Basic of oops and event handling
C Net Developer And Programmer Analyst Interview Questions
15 c net developer and programmer analyst interview questions shared by candidates
Write pseudo code for a method that gets a random number "x" and print all the numbers between 0 and x in a random order: Example for x = 7 => 61532740
where to use run time polymorphism? what is the difference between abstract and interface class? sql quaries? you should know your project well. database ,index,normalization etc...
Questions are like 10jugs filled with water and need to write program to find how the water can be filled partially
class Program { static void Main(string[] args) { B obj = new B(); Console.ReadKey(); } } abstract class A { public A() { Console.WriteLine("This is the A class"); //calc(); } public abstract void calc(); } class B : A { public B() { Console.WriteLine("This is the B class"); } public override void calc() { Console.WriteLine("This is the abstract methode"); } } Questions: 1. What will be printed on the console? 2. what will be printed to the console if we remove this "//" before the calc() in the contractor of class A;
WAP to find missing no. in an array of integer numbers from 1 to 100 if numbers are given in a sorted order.
Describe a data sturcture that you can do: Get[x] by key in O(1), Set(x,y) by key in O(1), and setAll(y) by O(1) The setAll does not must really put the value at all the places, its just need to be seen like this(when you do get, you need to get the correct value)
Elaborate Page life cycle in ASP.NET
find data from a string
WAP to find missing no. in an array of integer numbers from 1 to 100 if numbers are not given in a sorted order.
Viewing 1 - 10 interview questions