• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/24

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

24 Cards in this Set

  • Front
  • Back

Select the statement below that is true about forms.


Select one:




a. It is recommended to use mailto: as the action on a form since that is the easiest for the web developer.




b. The tag is optional.




c. None of these is true.




d. A form can be used to pass information to a program or script on the web server.

A form can be used to pass information to a program or script on the web server.

Select the HTML tag below that configures a button that, when clicked, will automatically reset form fields to their default values.

(input type="reset") and (button type="reset") Reset (/button)

Use the ________ attribute on the tag to specify the name and location of the script that will process the form control values.

action

Select the form control below that does not use the input tag

select list

Select the HTML tag below that configures a textbox with the name "email" and a width of 40 characters.

input type="text" name="email" size="40"

Select the form control below that would be appropriate to accept comments about your website.

scrolling text box

You would like to conduct a survey and ask your web page visitors to indicate the computer operating systems that they use. Each visitor could use more than one computer operating system. Select the form control that is best to use for this purpose.

check box

An order form contains an area for web visitors to select their state or province. You need to limit the amount of space on the form that is used for this feature. Select the form control that is best to use for this purpose.

select list

Choose the HTML tag below that would configure a scrolling text box with the name "feedback", 3 rows, and 60 characters.

textarea name="feedback" rows="3" cols="60" )(/texarea)

Select the HTML below that would associate a label displaying the text "Phone" with the text box named customerPhone.

(label) Phone: (input type="text" name="customerPhone" )( /label)
and
(label for="Phone")Phone: (/label)

Select the attribute used to limit the number of characters that a text box will accept.

maxlength

Select the tag used to visually group a number of form controls.

form

Select the attribute used to limit the width of a text box as displayed in a browser.

size

Select the type of form control that "disguises" the characters that are typed.

password

Select the form control from the choices below that may be used to submit a form.

input type="submit"

________ is a standard method or protocol for web pages to request special processing on the web server, such as database queries, sending e-mails, or handling form data.

Common Gateway Interface

What attributes are valid for the Select tag?

name, id, multiple, selected

When configuring a group of radio button form controls, the value of the ________ attribute on each radio button must be the same.

name

19. Select the true statement from the choices below.


Select one:




a. None of these statements are true.




b. A text box is created using the input element with t ype="box".




c. A scrolling text box is created using an input element with type="textarea".




d. A select list is created using select and input elements.

None of these statements are true.

The purpose of the ________ is to configure a label for a .

legend tag

Select the value of the type attribute that configures an HTML5 spinner control.

number

Select the value of the type attribute that configures an HTML5 slider control.

range

Select the true statement from those listed below.Select one:




a. The input element with type="email" will cause all browsers to edit for a valid e-mail address.




b. The required attribute will cause all browsers to verify that the user has entered information into the form control. Incorrect




c. The input element with type="date" will cause all browsers to display a calendar control.




d. The input element with type="email" will cause browsers that do not support the attribute to display a text box.

The input element with type="email" will cause browsers that do not support the attribute to display a text box.

The HTML5 ________ form control provides the user with a selection of choices along with an option to enter information.

datalist