141. How do you explicitly kill a user session ? A. Session.Exit B. Session.Close( ) C. Session.Discard( ) D. Session.Abandon ✅ The correct answer is option D.
142. What is the difference between HTTP handlers & HTTP modules_________________? A. Httphandler is an event handler and httpmodule is module to do some task B. Httphandler is an class and Httpmodule is an assembly C. All of the above D. None of the above ✅ The correct answer is option B.
143. We can manage states in asp.net application using________________? A. Session Objects B. Application Objects C. Viewstate D. All of the above ✅ The correct answer is option D.
144. Caching type supported by ASP.Net ? A. Output Caching B. DataCaching C. Both A and B D. None of these ✅ The correct answer is option C.
145. The actual work process of ASP.NET is taken care by _____________? A. aspnet_wp.exe B. aspnet_isapi.dll C. inetinfo.exe D. None of these ✅ The correct answer is option A.
146. In ASP.NET if one wants to set the focus on a particular control________________? A. Call FOCUS method B. Call SETCONTROL C. Call SETFOCUS D. None of the above ✅ The correct answer is option A.
147. Which of the following tool is used to manage the GAC ? A. GacSvr32.exe B. GacUtil.exe C. GacMgr.exe D. RegSvr.exe ✅ The correct answer is option B.
148. 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 correct answer is option C.
149. What is the out put of Following code String a=”Hello”; String b=”World” String c= a+b Response.Write ( “C “); ? A. Hello world B. Hello C. C D. World ✅ The correct answer is option C.
150. ______________ element in the web.config file to run code using the permissions of a specific user? A. element B. element C. element D. element ✅ The correct answer is option B.