1.
Which set of symbols are used to signify the presence of ASP.NET code?
2.
The main function of ______ is to convert the managed code into native code and then execute the code.
3.
When an ASP.NET file is placed on an IIS server and viewed through a browser, the resulting HTML page contains:
4.
Which of the following object is not an ASP component?
5.
Which is not an ADO.NET DataAdapter Object?
6.
The ______ is responsible for allocating, freeing, and compacting memory.
7.
The first event triggers in an aspx page is_______?
8.
Choose the form in which Postback occur
9.
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.
10.
______ is a code that consists of CPU and platform-independent set of instructions, which can be easily converted to native 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.
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();
}
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.
Where do we include the user lists for Form authentication?
15.
A_______is stored in the global assembly cache(GAC), which is a repository assembly maintained by .NET runtime.
16.
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);
17.
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);
18.
An alternative way of displaying text on web page using
19.
Which of the following is NOT an Assignment operator in C#.NET?
20.
The releasing of unreferenced objects is happening automatically .NET language by the________