1.
The releasing of unreferenced objects is happening automatically .NET language by the________
2.
A_______is stored in the global assembly cache(GAC), which is a repository assembly maintained by .NET runtime.
3.
Where do we include the user lists for Form authentication?
4.
An alternative way of displaying text on web page using
5.
Choose the form in which Postback occur
6.
Which of the following object is not an ASP component?
7.
Which set of symbols are used to signify the presence of ASP.NET code?
8.
Which of the following is the correct output of the C#.NET code snippet given below?
int[ , , ] a = new int[ 3, 2, 3 ];
Console.WriteLine(a.Length);
9.
Which of the following is NOT an Assignment operator in C#.NET?
10.
The main function of ______ is to convert the managed code into native code and then execute the code.
11.
State whether the following statements about .NET assembly are True or False.
i) Assembly physically exists as DLLs or EXEs.
ii) Assembly can include any file types like image files, text files, etc. along with DLLs or EXEs.
iii) One assembly can contain only one file.
12.
State whether the following statements about the side-by-side execution are True or False.
i) Side-by-side execution is the ability to run multiple versions of an application or component on the same computer.
ii) Isolation is an optional component of side-by-side execution.
iii) It uses strong-named assemblies to bind type information to a specific version of an assembly.
13.
State whether the following statements about .NET Frameworks are TRUE or FALSE.
i) The .NET FCL is object-oriented.
ii) The CLR is the platform on which applications hosted and executed.
14.
______ is a code that consists of CPU and platform-independent set of instructions, which can be easily converted to native code.
15.
Which is not an ADO.NET DataAdapter Object?
16.
The ______ is responsible for allocating, freeing, and compacting memory.
17.
When an ASP.NET file is placed on an IIS server and viewed through a browser, the resulting HTML page contains:
18.
Which of the following will be the correct output for the C#.NET code snippet given below?
String s1 = "ALL MEN ARE CREATED EQUAL";
String s2;
s2 = s1.Substring(12, 3);
Console.WriteLine(s2);
19.
The first event triggers in an aspx page is_______?
20.
What will be output of the following conversion ?
static void Main(string[] args)
{
char a = 'A';
string b = "a";
Console.WriteLine(Convert.ToInt32(a));
Console.WriteLine(Convert.ToInt32(Convert.Tochar(b)));
Console.ReadLine();
}