-
The following code fails. Why?
int a = 5; int b = 5; object oa = a; object ob = b; Debug.Assert(oa == ob, "oa is not equal ob");
-
Which is not cls compliant built in value type?
Intushortdecimalenum
-
Which of the following is not a member of System.Object?
a)Instance equalsb)Static Equalsc)Instance referenceequalsd)Instance Gettype
-
-
Postbackurl and Navigateurl
What is difference between "Session" and "Session" Objects? What is the use of "postbackurl" and "navigateurl" and the differences between those two things?
-
C# Serializable Keyword
What is the use of serializable keyword in C#?
-
-
How many types of Inheritance is there in C#?
HI,
Can youplz tell me how many types of Inheritance is there in C#?
As per my knowledge these are following but i am not sure
-single level
-multi level
-Hierarchical inheritence
-Hybride inheritence.
there one more inheritence but its not suported by C# that is Multiple inheritence.
is it correct ?plz help me.
-
Second maximum number
how to find out second maximum number in C#?
-
If a base class has a bunch of overloaded constructors, and an inherited class has another bunch of overloaded constructors, can you enforce a call from an inherited constructor to an arbitrary base constructor?
Yes, just place a colon, and then keyword base (parameter list to invoke the appropriate constructor) in the overloaded constructor definition inside the inherited class.
-
String is an
Skill/Topic: BeginnerA) object typeB) reference type
-
The base class Arrray belongs to the mamespace
Skill/Topic: IntermediateA) GlobalTypeB) ArraysC) System
-
There can me more than 1 Main() functions in a C# program
Skill/Topic: IntermediateA) YesB) NoExplanation: While compiling we can specify which Main() function to start in
-
How do destructors and garbage collection work in C#?
C# has finalizers (similar to destructors except that the runtime doesn't guarantee they'll be called), and they are specified as follows: class C{~C(){// your code}public static void Main() {}}Currently, they override object.Finalize(), which is called during the GC process.
-
When do you absolutely have to declare a class as abstract ?
(as opposed to free-willed educated choice or decision based on UML diagram)? When at least one of the methods in the class is abstract. When the class itself is inherited from an abstract class, but not all base abstract methods have been over-ridden.
-
You can create the following using C#
Skill/Topic: BeginnerA) class librariesB) Stand alone GUI (Windows Forms) applicationsC) ASP.NET Web pagesD) Command Line applications
-
What is Boxing?
Skill/Topic: AdvancedA) conversion of reference types to value typesB) conversion of value types to reference typesC) Encapsulating a base class
-
Following are the collections in C#:
Skill/Topic: AdvancedA) structsB) enumC) dictionariesExplanation: Ans. b & c. a isn�t a collection .
-
X=X+1 is equivalent to
A) X++B) X+=1C) Both A & B
-
What happens when you create an arraylist as ArrayList Arr=new ArrayList()
A) An arraylist of object Arr is created with the capacity of 16B) An arraylist of object Arr is created with the capacity of 20C) An arraylist of object Arr is created with the capacity of 26Explanation: Default capacity is 16 if size is not specified
C# Interview Questions
Ans