-
The following is a correct call to the Main() function
Skill/Topic: BeginnerA) static void Main()B) static Main(void)C) Main()
-
The field variables in a class or a struct in C# are by default given a value of zero
Skill/Topic: BeginnerA) TrueB) False
-
Does C# support multiple inheritance?
Skill/Topic: IntermediateA) YesB) No
-
XML documents for a C# program can be generated using
Skill/Topic: IntermediateA) /xmldoc switchB) /doc switchC) /gendoc switch
-
A delegate in C# is similar to:
Skill/Topic: AdvancedA) COMB) a function pointerC) a pointer
-
-
In C# events are actually a special form of delegates
A) TrueB) False
-
-
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#?
-
What is the difference between an interface and abstract class?
In the interface all methods must be abstract; in the abstract class some methods can be concrete. In the interface no accessibility modifiers are allowed, which is ok in abstract classes.
-
Will finally block get executed if the exception had not occurred?
Yes. What is the C# equivalent of C++ catch (…), which was a catch-all statement for any possible exception?
-
C# Interview Questions
Ans