-
How do you add objects to hashtable
A) With Add methodB) With insert MethodC) With = operator
-
How do you refer parent classes in C#
A) SuperB) ThisC) Base
-
How to implement multiple inheritence in C#
A) Using InterfaceB) Using Abstract classC) Using DelegatesD) Using Events
-
How can you sort the elements of the array in descending order
A) Sort methodsB) Reverse methodsC) By calling Sort and then Reverse methodsD) Can’t sort in descending
-
Where we can use DLL made in C#.Net
We can use the .net DLLs only in the applications supporting .NET.
-
-
-
-
-
-
Abstract classes and virtual methods
Abstract classes can be overridden by virtual methods (true, false)
-
Variable Declaration and Assignment
What is difference between these two statement? if variable is declared and assign value in following two waysString sValue = (String)GridView1.DataKeys[GridView1.SelectedIndex].Value;String sValue = GridView1.DataKeys[GridView1.SelectedIndex].Value.ToString();
-
Explicit Implimentation
What do you mean by Explicit Interface Implimentation? What's Interface Mapping?
-
Advantage of avl tree over binary search tree.
What is advantage using avl tree instead of using binary search tree ?
-
Exception Handling
what is the necessary for "throws" and "throw" in exception handling??
Even Though the exception has been thrown automatically and being handled by try and catch block..
-
Why do I get a syntax error when trying to declare a variable called checked?
The word checked is a keyword 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...
-
When you inherit a protected class-level variable, who is it available to?
Classes in the same namespace.
-
What does the keyword virtual mean in the method definition?
The method can be over-ridden.
-
Can you change the value of a variable while debugging a C# application?
Yes, if you are debugging via Visual Studio.NET, just go to Immediate window.
C# Interview Questions
Ans