-
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
-
-
-
-
A char in C# is
Skill/Topic: BeginnerA) 8 bitB) 16 bitC) 32 bitExplanation: Unicode characters are supported in C#
-
-
-
Where we can use DLL made in C#.Net
We can use the .net DLLs only in the applications supporting .NET.
C# Interview Questions
Ans