Hybrid 1-3 Flashcards
What type of HTML form element is used for clearing form data?
The “reset” element
T/F - The W3D created the Web Accessibility Initiative (WAI) In 1997 to improve the accessibility of websites
False. It’s the W3C that created WAI (Web Accessibility Initiative)
The <fieldset> element uses the _____________ element to display a caption for the fieldset:
<legend>
</legend>
What tag is used to create a drop down list in the form ?
<select></select>
T/F - Accessibility focuses on how a disabled person accesses or benefits from a site, system or application
True
Select the HTML tag below that configures a textarea with the name “details” and a width of 60 columns and 5 rows.
A textarea name=”email” cols=”60” rows=”5”Details …</textarea>
B input type=”text” name=”email” size=”60” rows=”5”/>
C textarea name=”details” cols=”40” rows=”5”Details …</textarea>
D textarea name=”details” cols=”60” rows=”5”Details …</textarea>
D textarea name=”details” cols=”60” rows=”5”Details …</textarea>
Attribute inside of the form tag that specifies where the form data is sent when the form is submitted
aciton
What is the difference between radio buttons and checkboxes?
Only one radio button can be selected. Users can select more than one checkbox.
Which one of the following is NOT a form element?
radio button
div tag
submit button
text box
div tag
What is the size of an IP address in IPv4?
32 bit
A DNS server’s primary role is to convert
The domain name to an IP address
T/F - TCP/IP stands for transmission control protocol/Internet protocol and is a set of communications protocols used to connect devices on a network.
True
An international community that develops open standards to ensure the long-term growth of the Web.
W3C
T/F - Port number 80 is assigned to Hypertext Transfer Protocol (HTTP)
True
T/F - Given a domain name, a DNS server returns an IP address
True
A 404 message indicates that a domain name is not recognized
False
What tag is used to link web pages to other pages?
<a></a>
HTML documents have the file extension ____
HTML
T/F - The following example is correct
<img “birthday.jpg”>
False.
Should be <mg src=”birthday.jpg”
What happens when HTML is broken due a bug in the code?
The browser will attempt to guess what you meant, and does its best to fix the bug itself
What is the primary purpose of an HTML form?
To get info from the user
Attribute in form tag giving location where form’s data should be sent is:
an action
Other than visual appearance what is important about headers?
They create an organizational hierarchy
T/F - The following HTML is correct:
<p>Welcome to <!--CST8285, COURSE</p>--> A WEB PROGRAMMING
</p>
False
T/F - HTML is case sensitive
False
Ordered list tag
<ol>
</ol>