| A | B |
| Which attribute of the form field tags is used to organize the user data into the name=value pairs so that it can be sent to the processing script on the server? | Name attibute |
| Which Web form field allows users to choose from among two or more non-exclusive options? | check box |
| Which of the following actions will redisplay Web form fields with their default values? | Resetting the form |
| When you submit a Web form, the browser sends the information entered in this form to the Web server as: | a raw text string. |
| What occurs when a user clicks the Reset button on a Web form? | All form fields are cleared and set back to their default settings. |
| What occurs when a user clicks the Submit button on a Web form? | The data from all fields in the form is sent to be processed by the action specified in the <form> tag. |
| When you create a text box field, you should use the size attribute to: | specify the visual width of the text box in characters. |
| What happens if you omit the size attribute when you use the <select> tag to create a select list? | The number of items that will appear in the list by default will depend on the browser. |
| Which choice lists the elements that are necessary for a CGI session? | Web browser, CGI script, Web form and Web server with a CGI interpreter |
| Radio buttons are reserved for two or more mutually exclusive options on a Web form. How do you ensure this exclusivity? | The radio buttons must share the same name attribute. |
| Which of the following is the de facto standard used to process Web forms? | Common Gateway Interface (CGI) |
| In a raw text string, which of the following is used to replace spaces entered by the user? | Plus signs ( + ) |
| If you are conducting search engine optimization (SEO), you should: | create as simple a form as possible. |
| Which attribute is shared by all Web form field elements? | The name attribute |
| Which Web form field should you use to create a scrolling text field into which a user can enter multiple lines of text? | Text area |
| A text field into which a user can enter characters. | Text Box |
| Round option buttons in a group of two or more mutually exclusive options. | Radio Button |
| Square boxes in a group of two or more non-exclusive options | Check box |
| A drop-down list of two or more options from which a single selection can be made. | Single-option select list |
| An exposed list or two or more options, optionally scrollable, from which the user can make multiple selections | multiple-option select list |
| A scrolling text field into which the user can enter multiple lines of text. | text area |
| A text box that visually masks the entered characters as asterisks | password field |
| A button and field that allow users to navigate to and select a local file for uploading or other purposes (for example, to validate HTML files) | file upload |
| A button that, when clicked causes the form’s action statement to process. Labeled “Submit” or “submit Query” by default, but can display any label. | submit button |
| A button that, when clicked, clears all form data and sets all form fields back to the default values for those fields. Labeled “Reset” by default, but can display any label. | reset button |