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