-
The methods which can be called without instantiating an object first are called
Skill/Topic: IntermediateA) staticB) dynamicC) primary
-
What is an assembly?
Skill/Topic: IntermediateA) A logical unit containing complited codeB) A collection of C# compilersC) .NET debugger
-
You can derive your own classes from the base class Library
Skill/Topic: IntermediateA) TrueB) False
-
Which tool is used to browse the classes, structs, interfaces etc. in the BCL?
Skill/Topic: IntermediateA) csc.exeB) bcl.exeC) WinCV
-
To start a Thread, you call the following method
Skill/Topic: IntermediateA) Start()B) Begin()C) Jump()
-
System is a
Skill/Topic: IntermediateA) ClassB) NamespaceC) Program
-
The following type of class can�t be instantiated
Skill/Topic: IntermediateA) absoluteB) abstractC) superD) none of the above
-
'Reflection' is used to
Skill/Topic: AdvancedA) Get assembly metadata using codeB) Debug C# programsC) Compile C# programs
-
Manifest is an area where:
Skill/Topic: AdvancedA) the assembly code is compiledB) Debug information is a storedC) Assembly metadata is stored
-
We need to register a private assembly in the Windows registry in order to use it.
Skill/Topic: AdvancedA) TrueB) FalseExplanation: We just need to copy it in the folder where the executable is located or in a subfolder below it..
-
How does a running application communicate or share data with other applicxation running indifferent application domains?
Skill/Topic: AdvancedA) using ExceptionsB) using attributesC) using .NET remoting services.
-
How do you deploy an assembly?
Skill/Topic: AdvancedA) Using MSI installerB) using a CAB archiveC) using XCOPYD) All of the above
-
We inherit a class using the following syntax:
Skill/Topic: AdvancedA) class DerivedClass: BaseClass{ }B) class DerivedClass:: BaseClass{ }C) class BaseClass :DerivedClass { }
-
Unsafe code in C# can be written in the flowing block:
Skill/Topic: AdvancedA) unsafe int ThisMethod(){}B) unsafe: int ThisMethod() { }C) int ThisMethod():unsafe { }
-
The following is the namespace used for Reflection:
Skill/Topic: AdvancedA) System.Windows.ReflectionB) System.ReflectionC) System.Features.Reflection
-
Intermediate Language also facilitates language interoperability
A) TrueB) FalseExplanation: AS the managed code is bound to CTS & CLS it is language interoperable
-
.NET interfaces are not derived from IUnknown & they do not have associated GUID�s
A) TrueB) FalseExplanation: Only COM interfaces are derived from Iunknown and they do have GUIDs
-
Code written in C# can not used in which of the languages
A) J#B) Managed C++C) Vb.NetD) JavaExplanation: Java is not targeted to run under CLR
-
Which of the following is not a subclass of reference type
A) EnumerationsB) DelegatesC) ArraysExplanation: Enumerations are of Value Type
-
Which is .NET s answer to Memory Management
A) ReflectionB) Common Type SystemC) GarbageCollection
C# Interview Questions
Ans