121. Which of the following is FALSE ? A. ASP.NET is a major upgrade over ASP B. ASP+ and ASP.NET refer to the same thing C. ASP.NET applications run without a Web Server D. None of these ✅ The correct answer is option D.
122. Difference between Response.Write() and Response.Output.Write() ? A. Response.Output.Write() allows you to write formatted output B. Response.Output.Write() allows you to stream output C. Response.Output.Write() allows you to buffer output D. Response.Output.Write() allows you to flush output ✅ The correct answer is option A.
123. What is the Server.MachineName does_________________? A. Gets the Referred Web site name on the server B. Gets the Server’s Machine Name C. Gets the Client Machine Name D. None of the above ✅ The correct answer is option B.
124. Mode of storing ASP.NET session_____________? A. StateServer B. SQL Server C. InProc D. All of the above ✅ The correct answer is option D.
125. In ASP.NET if you want to allows page developers a way to specify static connections in a content page then the class used is_____________? A. System.Activator B. ProxyWebPartManager C. WebPartManager D. None of these ✅ The correct answer is option B.
126. ____________ tests make sure that new code does not break existing code? A. Integration tests B. Regression tests C. Load test D. Unit tests ✅ The correct answer is option A.
127. How do you register a user control ? A. Add Source, Tag prefix B. Add Tag prefix, Tag name C. Add Src, Tagprefix, Tagname D. None of these ✅ The correct answer is option C.
128. Which object can help you maintain data across users ? A. Response object B. Application object C. Session object D. Server object ✅ The correct answer is option B.
129. Which of the following is used to send email message from my ASP.NET page? A. System.Web.Mail.SmtpMail B. System.Web.Mail.MailMessage C. Both A and B D. None of these ✅ The correct answer is option C.
130. I have an ASP.NET application. I have a page loaded from server memory. At this instance which of the following methods gets fired ? A. Load() B. Unload( ) C. PreRender( ) D. None of the Above ✅ The correct answer is option A.