You are on page 1of 2

Lamayo, Carlos Ian L.

BIT34

Provide what is asked for in each item: (30 pts)

What is the difference between the Submit Query and Reset buttons? (5pts)
Answer: The difference of the two is that submit query pass the data to the database and the
Reset Buttons is to revert or clear all the information inputted on the site.

How do you create a drop-down menu in a webpage? Please provide at least 3 steps. (5pts)
Answer:
The first step is to insert - <select name=”name of the drop down”>
The second step is to insert a value to your drop down menu : <option value=”value”>”name of
the item on the list”</option> you can use this as much as you want to put more values to your
drop down menu
The third step is to enclose the full code with </select > , it is like java coding it is the same with
the curly brackets “{}”’

What are the similarities and differences between radio buttons and check boxes? (6pts)
Answer: The similarities of the 2 is that they can be defined whether as true or false and the
differences is that Radio buttons can be used to select one for the group only and the check
boxes cannot be grouped together.

These are webpages designed to gather information from the site visitors. (2pts)
Answer: Online Forms - Webpages that are designed to gather information from the site
visitors.

This input field is used when asking for alphanumeric inputs. (2pts)
Answer: Text fields can be used to input alphanumeric inputs.

This input field is used when the user is asked to select a single option from a list. (2pts)
Answer: Radio Buttons can be used if you want to select one option from the list.

These input fields are used when users are allowed to select more than one option among
several choices. (2pts)
Answer: Checkboxes can be used to select more than one option.

These are text fields that have more than one line for text input. (2pts)
Answer: Text areas have more than one line for text inputs.

This input field provides a drop-down menu that the user can choose from. (2pts)
Answer: Select Fields can provide a drop-down menu

This is an input type that produces a Submit Query button by default. (2pts)
Answer: <input type=”submit”>
Lamayo, Carlos Ian L.
BIT34

Identify the term/s that are being described by the following statement. Kindly choose the
answer on the pool of words below: (20 pts)

1.) Type of form that captures letters and numbers.


Answer: Type-“text”
2.) Computer that contains and puts webpages on the Web.
Answer: Online form
3.) Resets the form to default values.
Answer: Type=”reset”
4.) A form attribute that indicates the script or program that would handle the form's
contents.
Answer: Action
5.) Type of form that allows one selection from a number of choices.
Answer: Type=”radio”
6.) Type of form that captures large amounts of text.
Answer: Text area
7.) Submits the online form.
Answer: Type=”submit”
8.) Type of form that provides a drop-down menu.
Answer: Select
9.) Provides a means for interaction between the web server and the user.
Answer: Web server
10.)Type of form that allows multiple selections.
Answer: Type=”checkbox”

You might also like