|
What
is Assembly manifest?
Latest answer: The
manifest of an assembly contains assembly's data like version, scope, security
information (strong name),etc..............
Read
answer
What
is GAC (global assembly cache)?
Latest answer: GAC,
global assembly cache is an area of memory reserved to store the assemblies of
all .NET applications that are running on a certain machine.............
Read answer
Can
you inherit private class-level variables?
Latest answer: Yes, they
can be inherited but they are not accessible in the derived class.............
Read answer
Name
the class from where everything is derived in .NET
Latest answer: System.Object............
Read answer
What
is the significance of the keyword virtual in the method definition?
Latest answer: The method
with virtual keyword signifies that it can be over-ridden..............
Read
answer
How
can you allow class to be inherited and prevent the method from being
over-ridden?
Latest answer: Declare
the class as public and make the methods sealed................
Read answer
What
is an interface class?
Latest answer: An
interface class is an abstract class with public abstract methods.............
Read
answer
Difference
between an interface and abstract class
Latest answer: Some
methods in the abstract class can be concrete whereas all methods in the
interface are abstract...............
Read answer
Name
the namespace used to create a localized application
Latest answer: System.Globalization
System.Resources.................
Read answer
Explain
assert()
Latest answer: Assert
method is in debug compilation. It takes a boolean condition as a parameter. It
shows error dialog if the condition is false and if the condition is
true..............
Read answer
Part 1 |
Part 2 |
Part 3 |
Part 4 |
part 5
|