-
Which tool is used to browse the classes, structs, interfaces etc. in the BCL?
Skill/Topic: IntermediateA) csc.exeB) bcl.exeC) WinCV
-
A struct is a
Skill/Topic: BeginnerA) value typeB) a reference type
-
An int in C# is
Skill/Topic: BeginnerA) 16 bit unsigned integerB) 32 bit signed integerC) 64 bit integer
-
Bool data type in C# is
Skill/Topic: BeginnerA) a value typeB) a reference type
-
-
When you inherit a protected class-level variable, who is it available to?
Classes in the same namespace.
-
Why do I get a "CS5001: does not have an entry point defined" error when compiling?
The most common problem is that you used a lowercase 'm' when defining the Main method. The correct way to implement the entry point is as follows: class test {static void Main(string[] args) {}}
-
What is the data provider name to connect to Access database?
Microsoft.Access.
C# Interview Questions
Ans