Quiz
Question 1. The definition for an ObjectDataSource control requires all but one of the following attributes. Which one is it?
ID
TypeName
SelectMethod
UpdateMethod
Question 2. The process of validating the identity of a user is called _____.
authorization
authentication
controls
responses
Question 3. Which of the following is not a benefit of user controls?
Decreased development time
Reduced maintenance time
Consistency throughout application
Increased test time
Question 4. The ASP.NET Ajax client-side framework is loaded on the _____ for an ASP.NET Web application.
browser
panel
trigger
JavaScript
Question 5. A login page should always be named _____.
Login.docx
Security.aspx
Login.aspx
Form.aspx
Question 6. To determine whether you're transmitting data over a secure connection, you can _____.
check the appSettings section of the web.config file
refer to the URL in the browser's address bar
check for a Lock icon in the browser's title bar
watch for the security alert that's displayed whenever you're about to establish a secure connection
Question 7. By default, the controls in a/an _____ are updated whenever the page is posted back to the server.
ScriptManager control
Page_Load method
UpdatePanel control
ScriptManagerProxy control
Question 8. Which of the following SQL statements will search for a given last name in the tblEmployees table based on a search variable name's strSearch?
"select * from tblEmployees = ‘" + strSearch"'"
"select * from tblEmployees where FirstName = ‘" + strSearch"'"
"select * from tblEmployees where LastName = ‘" + strSearch+"'"
"select * from tblEmployees where LastName = + strSearch
Question 9. The _____ part of ASP.NET Web pages can contain a combination of Web controls.
HTML
Code Behind
Source
Design
Question 10. For which of the following purposes is a digital secure certificate not used?
To establish the identity of the client
To establish the identity of the server
To determine if a security alert is displayed before a secure connection is established
To provide information needed to encrypt data.