151. In .NET the operation of reading metadata and using its contents is known as _________________? A. Reflection B. Binding C. Serialization D. Enumeration ✅ The correct answer is option A.
152. When an .aspx page is requested from the web server, the out put will be rendered to browser in following format ? A. HTML B. WML C. JSP D. XML ✅ The correct answer is option A.
153. In ASP.NET the section contain which of the following elements ? A. B. C. Both A and B D. None of these ✅ The correct answer is option C.
154. Which of these files takes the web application in offline mode ? A. app_offline.html B. app_offline.htm C. appoffline.html D. None of these ✅ The correct answer is option B.
155. Which namespace allows us to formauthentication ? A. System.Web.Services B. System.Web.Ui.Forms.Security C. System.Web.Configuration D. System.Web.Security ✅ The correct answer is option D.
156. Which of the following control is used to validate that two fields are equal ? A. equals() method B. RegularExpressionValidator C. RequiredFieldValidator D. CompareValidator ✅ The correct answer is option D.
157. ____________ is a special subfolder within the windows folder that stores the shared .NET component? A. GAC B. Root C. /bin D. None of these ✅ The correct answer is option A.
158. If a developer of ASP.NET defines style information in a common location. Then that location is called as_________________? A. Theme B. Master Page C. Customization D. None of these ✅ The correct answer is option A.
159. In ASP.NET application the Global.asax file lie in which directory_________________? A. System B. ROOT C. Application D. None of the Above ✅ The correct answer is option B.
160. An ASP.NET page uses a Datagrid displays employee information.The Web application supports a large number of concurrent users, who will be saving data from the grid back to the database? A. Use View State B. Use URL munging C. Disable ViewState and use Session State D. Disable View State and don’t use session state ✅ The correct answer is option D.