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