-
How do you determine the size required by a Value type on the stack
A) Length operatorB) Sizeof operatorC) Mem operator
-
-
-
What is an abstract class?
A class that cannot be instantiated. A concept in C++ known as pure virtual method. A class that must be inherited and have the methods over-ridden. Essentially, it is a blueprint for a class without any implementation.
-
-
What Datatypes does the RangeValidator Control support?
Integer.String and Date
-
-
Each process in a 32 bit Windows environment has the following amount of virtual memory available:
Skill/Topic: AdvancedA) 4 MBB) 400MBC) 4 GB
-
The following method is used to force the garbage collector :
Skill/Topic: AdvancedA) Garbage.CollectB) System.GC.Collect()C) Gc.Clea.Up()
-
-
-
To read user input from the console, the following statement is used
Skill/Topic: BeginnerA) Console.ReadLine();B) Console.Input()C) System.GetuserRequest();
-
We declare an integer variable 'x' in C# as
Skill/Topic: BeginnerA) x integer;B) integer x;C) int x;
-
Does C# support multiple inheritance?
No, use interfaces instead.
-
Are private class-level variables inherited?
Yes, but they are not accessible, so looking at it you can honestly say that they are not inherited. But they are.
-
Every statement in C# must end in
Skill/Topic: BeginnerA) ;B) ,C) #
-
Which modifiers hides an inherited method with same signature
A) NewB) VirtualC) SealedExplanation: New hides the inherited method which was overridden by base class
-
ASP.NET web pages can be programmed in C#?
Skill/Topic: BeginnerA) YesB) No
-
-
C# Interview Questions
Ans