Which of the following method must be overridden in a custom control ?
(A) The default constructor
(B) The Control_Build() method
(C) The Paint() method
(D) The Render() method
Which of the following object is used along with application object in order to ensure that only one process accesses a variable at a time ?
(A) Lock()
(B) ThreadLock
(C) Synchronize()
(D) Synchronize
The .NET framework which provides automatic memory management using a technique called _________________?
(A) Assemblies
(B) Serialization
(C) Overriding
(D) Garbage Collection
____________ tests make sure that new code does not break existing code?
(A) Integration tests
(B) Regression tests
(C) Load test
(D) Unit tests
How do you get information from a form that is submitted using the “post” method ?
(A) Request.QueryString
(B) Response.writeln
(C) Response.write
(D) Request.Form
Caching type supported by ASP.Net ?
(A) Output Caching
(B) DataCaching
(C) Both A and B
(D) None of these
What is the significance of Response.AddHeaders( ) ?
(A) Adds HTTP Headers to output stream
(B) Adds Tag to rendered Page
(C) Add Headers to the web site
(D) None of the above
Output : Response.Buffer = True Response.ExpiresAbsolute = Now().Subtract(New TimeSpan(1, 0, 0, 0)) Response.Expires = 0 Response.CacheControl = “no-cache” ?
(A) Avoid page to be cached
(B) Clears the buffer area
(C) The session expires
(D) None of the Above
The feature in ASP.NET 2.0 that is used to fire a normal postback to a different page in the application is called ?
(A) Cross Page Posting
(B) Code-front
(C) Theme
(D) None of the above
Which language is used to create an ASP.NET code file ?
(A) Visual Basic
(B) C#
(C) C++
(D) All of the above