Which method do you use to expllicitly to kill a user session?
session.clear()
session.dispose()
Session.Abandon
None
What’ is the sequence in which ASP.NET events are processed ?
1)Page_Init 2)Page_Load.3)Control events 4)Page_Unload event.
1)Page_Init 2)Page_Unload event..3)Control events 4)Page_Load
1)Page_Load 2)Page_Init 3)Control events 4)Page_Unload event.
In ASP.NET the < authorization > section contain which of the following elements
< allow >
< deny>
Both 1 and 2
Constructors have no return type, not even void.
True
False
constructors can be abstract, final, native, static, or synchronized.
constructors can have any of the access modifiers: public, protected, private.
Constructors name is not same as their class name
Constructors use "this"(keyword) to refer to another constructor in the same class with a different parameter list
If a constructor uses this, it must not be in the constructor's first line
Interfaces have constructors