-
-
Multicast Delegate
What is multicast delegate? When it is used?
-
When to use string classes
when we have string builder which are mutable why we need immutable string classes 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?
-
-
Which of the following is used to denote comments in C#?
Skill/Topic: IntermediateA) /* */B) //C) ///Explanation: /// is used from XML documentation
-
IF a namespace isn't supplied, which namespace does a class belong to
Skill/Topic: IntermediateA) a nameless global namespaceB) SystemC) Windows
-
1. Are there some features of C# language not supported by .NET?
Skill/Topic: AdvancedA) YesB) NoExplanation: For example some instances of operator overloading!
-
Interface members can not be declared as
A) VirtualB) StaticC) PrivateD) All of the above
-
What is the difference between shadow and override
Override id used for variables and methods but override only used for methods.
-
-
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
-
C# Interview Questions
Ans