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