-
Why would you use untrusted verificaion?
Web Services might use it, as well as non-Windows applications.
-
What does the parameter Initial Catalog define inside Connection String?
The database name to connect to.
-
What is the data provider name to connect to Access database?
Microsoft.Access.
-
What is a pre-requisite for connection pooling?
Multiple processes must agree that they will share the same connection, where every parameter is the same,
-
What's the implicit name of the parameter that gets passed into the class' set method?
Value, and its datatype depends on whatever variable we're changing.
-
Describe the accessibility modifier protected internal.
It's available to derived classes and classes within the same Assembly (and naturally from the base class it's declared in).
-
What's the top .NET class that everything is derived from?
System.Object.
-
How's method overriding different from overloading?
When overriding, you change the method behavior for a derived class. Overloading simply involves having a method with the same name within the class.
-
What does the keyword virtual mean in the method definition?
The method can be over-ridden.
-
-
-
-
Which is the first level of compilation in the .NET languages?
Skill/Topic: BeginnerA) CLRB) ILC) Platform-specific codeExplanation: Intermediate Language
-
IL code compiles to
Skill/Topic: BeginnerA) Platform-specific Executable codeB) Byte CodeC) .NET CodeExplanation: The CLR compiles the IL into Platform-specific Executable code
-
All the .NET languages have the following in common
Skill/Topic: BeginnerA) SyntaxB) KeywordsC) Base Class Library
-
From command line, a C# program can be compiled using
Skill/Topic: BeginnerA) csc.exeB) csharp.exeC) compilescs.exe
-
The C# code files have an extension
Skill/Topic: BeginnerA) .csharpB) .csC) #
-
There must be at least the following function in a C# program
Skill/Topic: BeginnerA) main()B) Main()C) Enter()
-
All the C# programs must have the following statement
Skill/Topic: BeginnerA) using DotNetB) using SystemC) include System
-
A code block in C# is enclosed between
Skill/Topic: BeginnerA) < >B) [ ]C) { }
C# Interview Questions
Ans