1/39

This is your custom message!

Question: Is ASP.NET a development framework used to build web pages and web sites?
Answer: True
Question: Which of the following is NOT one of the ASP.NET development models?
  • Web Pages
  • Web Forms
  • Model-View-Controller (MVC)
Answer: Model-View-Controller (MVC)
Question: The oldest of the ASP.NET models is __________.
Answer: Web Forms
Question: What is the purpose of ASP.NET server controls?
Answer: ASP.NET server controls help separate executable code from HTML, making code more readable and maintainable.
Question: In ASP.NET, an ASPX page containing a form is always posted back to itself.
Answer: True
Question: Which type of server controls are used for input validation in ASP.NET?
  • HTML Server Controls
  • Web Server Controls
  • Validation Server Controls
Answer: Validation Server Controls
Question: ASP.NET Validation Server Controls help validate user input on the __________ side.
Answer: server
Question: Describe the ASP.NET page life cycle and its stages.
Answer: The ASP.NET page life cycle consists of stages like Initialization, Instantiating Controls, Event Handling Code Execution, Page Rendering, and it raises events at each stage for developers to execute code.
Question: ASP.NET exposes properties of the page that developers can monitor during event subroutines.
Answer: True
Question: To do something special only if it is the first time a page is loaded, developers can monitor the __________ property of the Page.
Answer: IsPostBack
Question: In ASP.NET, the programming model centers around events.
Answer: True
Question: What is the main benefit of maintaining ViewState in ASP.NET Web-Forms?
  • To clear all form values on submission.
  • To reduce the size of the page.
  • To maintain the state of the page.
  • To change the layout of the page.
Answer: To maintain the state of the page.
Question: _______ provides a template for other pages within an ASP.NET application with shared layout and functionality features.
Answer: Master Pages
Question: Explain the concept of Code Behind in ASP.NET Web-Forms.
Answer: Code Behind is the logic that is compiled into a DLL and referenced by the .aspx page to enable the event-driven model of programming.
Question: In ASP.NET, maintaining navigation is made easier by using a separate file called web.sitemap.
Answer: True
Question: _______ is maintained through a hidden/compressed value placed on the page with the runat='server' attribute in ASP.NET Web-Forms.
Answer: ViewState
Question: What is the purpose of Master Pages in ASP.NET Web-Forms?
Answer: Master Pages provide a template for other pages with shared layout and functionality features in an ASP.NET application.
Question: In ASP.NET, the default behavior of Web-Forms is to maintain the ViewState.
Answer: True
Question: What is the concept of code behind in ASP.NET?
  • All logic is compiled into the .aspx page.
  • All logic is compiled into a separate JavaScript file.
  • All logic is compiled into a DLL.
  • All logic is written inline in the HTML code.
Answer: All logic is compiled into a DLL.
Question: In ASP.NET, does the Page_Unload event occur at the end of the page life cycle?
Answer: True
Question: What is the purpose of the ViewState in ASP.NET?
  • To encrypt all data on the page
  • To maintain state within the application
  • To control the layout of the page
Answer: To maintain state within the application
Question: The syntax for accessing the contents of an element in ASP.NET is by using the element's ________ value.
Answer: ID
Question: Explain why the contents of a ListBox may be duplicated during a Postback in ASP.NET.
Answer: The duplication occurs because the ViewState already contains the contents of the ListBox from the first page rendering, and they get added again during the Postback.
Question: Is the ViewState in ASP.NET implemented as a hidden input type?
Answer: True
Question: What event in ASP.NET allows you to determine if it is the first time the page is being loaded?
  • Page_Init
  • Page_Load
  • Page.IsPostBack
Answer: Page.IsPostBack
Question: EnableViewState property in ASP.NET can be used to control whether ________ is used in a control.
Answer: ViewState
Question: How can you prevent the duplication of contents in a ListBox during a Postback in ASP.NET?
Answer: You can use the Page.IsPostBack property to only populate the contents of the ListBox during the first page loading.
Question: In ASP.NET, can you access web controls or HTML elements in the Code Behind feature by using their ID name?
Answer: True
Question: What is the main benefit of using hidden input types, Session, and cookies for maintaining state in ASP.NET?
  • They provide advanced security features
  • They allow for easier debugging
  • They help maintain user session data
Answer: They help maintain user session data
Question: In ASP.NET, can you use the PostbackURL property on a button to navigate to another page?
Answer: True
Question: Which validator in ASP.NET is used to ensure a TextBox is not empty?
  • CompareValidator
  • CustomValidator
  • RequiredFieldValidator
Answer: RequiredFieldValidator
Question: _______ is used in ASP.NET to access databases, server resources, and web services.
Answer: Classes
Question: What is the benefit of using Master Pages in ASP.NET?
Answer: Master Pages allow for consistent layout and design across multiple pages in a web application.
Question: In ASP.NET, can you access the previous page's ViewState when using Server.Transfer for navigation?
Answer: True
Question: Which version of .NET introduced significant changes to the starting point of a Web Application project?
  • .NET 2.0
  • .NET 3.5
  • .NET 4.0
Answer: .NET 4.0
Question: _______ is an open-source initiative that allows for building, compiling, and executing .NET applications on other platforms.
Answer: The Mono-Project
Question: Explain the cross-platform capabilities of ASP.NET.
Answer: ASP.NET can run on Windows, Linux, and macOS, making it versatile and accessible on multiple operating systems.
Question: Is it true that ASP.NET can be used as the front-end view layer while the business logic is developed in separate classes?
Answer: True
Question: Which validator in ASP.NET is used to validate input based on a specified regular expression?
  • CompareValidator
  • CustomValidator
  • RegularExpressionValidator
Answer: RegularExpressionValidator
Back to Home