1.
In ASP.NET, which of the following properties will you modify to control the tab order of a web control?
2.
A user needs to preserve data temporarily after a postback. Which of the following client-side state management mechanism is preferred to store user's data in this scenario?
3.
Which of the following statements holds true if you had enabled/disabled the view state by setting the EnableViewState property in the section of web.config file?
4.
Which of the following directives uses the namespace attribute?
5.
Which of the following statements doesn't hold true for Import Directive?
6.
Which of the following directive can be used to turn off the session state in a single page?
7.
The settings at which of the following section of the machine.Should config file be changed to prevent this?
8.
In ASP.NET, which of the following are built-in objects:
1. Request
2. Response
3. Server
4. Session
5. Context
6. Trace
9.
Which of the following event handlers is included in the global.asax file in .NET :
1. Application_Start
2. Application_End
3. Session_Start
4. Session_End
5. Application_OnRequest
10.
In the following ASP.NET code, which of these processes are performed in statement 1 and statement 2?
int i = 10; object myObject = i; // statement 1
i = (int)myObject; // statement 2