-
Object Oriented and Object Based Language
Explain What are Object Oriented Language and Object Based Language
-
Second maximum number
how to find out second maximum number in C#?
-
How do I create a Delegate/MulticastDelegate?
C# requires only a single parameter for delegates: the method address. Unlike other languages, where the programmer must specify an object reference and the method to invoke, C# can infer both pieces of information by just specifying the method's name. For example, let's use System.Threading.ThreadStart: Foo MyFoo = new Foo();ThreadStart del = new ThreadStart(MyFoo.Baz);This means that delegates can...
-
-
Advantage of avl tree over binary search tree.
What is advantage using avl tree instead of using binary search tree ?
-
Divide Two Numbers Without Using Division and Modulus Operator
Write C# code to divide two numbers without using the division and modulus operator
-
-
How do you make a class not instantiable
A) Making class as AbstractB) Having a Private constructorC) Making the class sealedD) Both A & B
C# Interview Questions
Ans