CISC 3140 QUESTIONS AND ANSWERS
What is the form a HTML comment?
a. <!-- Comment --!>
b. / Comment
c. /* Comment */
d. <!--Comment --> - Answers :d. <!--Comment -->
Which heading tags produce text that is smaller than the normal size text? - Answers
:h5, h6
What is the difference in behavior between a group of radio buttons and checkbox
buttons? - Answers :In a group of radio buttons, you can only select one from the group.
Checkbox buttons allow you to select multiple choices
Name 3 different controls that can be created with an <input> tag - Answers
:Passwords, Checkboxes, and Text Input
What does HTML stand for? - Answers :Hypertext Markup Language
What does the action property of an HTML <form> specify? - Answers :The action
property specifies where to send the data submitted in the form.
Which of the following tags is empty?
a. h1
b. img
c. hr
d. body - Answers :c. hr
fill in the blank:
<title> Week ________ - Answers :</title>
fill in the blanks:
<ul>
____Item 1____
</ul - Answers :<li></li>
T/F <tbody> is a required element of every table. - Answers :false
T/F A <div> tag is an inline element - Answers :False
T/F The two required attributes of an <img /> tag are: src & alt. - Answers :false
T/F A <span> tag is a type of inline tag. - Answers :True
Which of the following is a valid HTML tag?
, a. border
b. body
c. type
d. action - Answers :c. body
T/F Strong and clear organization is a benefit of using Tables. - Answers :True
T/F A POST generates a query string. - Answers :False
The action attribute of a <form> tag may contain what values? - Answers :Absolute or
Relative URL
Which one of the following defines a CSS class selector, RED:
a. #RED {...}
b. .RED{...}
c. RED {...}
d. All of the Above
e. None of the Above - Answers :b. .RED{...}
Which level of CSS has the highest priority? - Answers :User Defined
For the following question use the HTML code below:
<body>
<div id="logo">
<h1>Education Sellers</h1>
<h2>Book Rep System</h2>
</div>
<h2>Technical Books</h2>
</body>
To change only the "Book Rep System" text to green text in the above HTML we would
use: - Answers :#logo h2{color: green;}
Explain the CSS Box Model. - Answers :The CSS Box Model is a way to view the
spacing around content in HTML. Each element is like a box and has a variety of areas
that can be spaced around it. Immediately around the content is the padding, after the
padding is the border, and lastly, the margin is between the border and the next
What is the form a HTML comment?
a. <!-- Comment --!>
b. / Comment
c. /* Comment */
d. <!--Comment --> - Answers :d. <!--Comment -->
Which heading tags produce text that is smaller than the normal size text? - Answers
:h5, h6
What is the difference in behavior between a group of radio buttons and checkbox
buttons? - Answers :In a group of radio buttons, you can only select one from the group.
Checkbox buttons allow you to select multiple choices
Name 3 different controls that can be created with an <input> tag - Answers
:Passwords, Checkboxes, and Text Input
What does HTML stand for? - Answers :Hypertext Markup Language
What does the action property of an HTML <form> specify? - Answers :The action
property specifies where to send the data submitted in the form.
Which of the following tags is empty?
a. h1
b. img
c. hr
d. body - Answers :c. hr
fill in the blank:
<title> Week ________ - Answers :</title>
fill in the blanks:
<ul>
____Item 1____
</ul - Answers :<li></li>
T/F <tbody> is a required element of every table. - Answers :false
T/F A <div> tag is an inline element - Answers :False
T/F The two required attributes of an <img /> tag are: src & alt. - Answers :false
T/F A <span> tag is a type of inline tag. - Answers :True
Which of the following is a valid HTML tag?
, a. border
b. body
c. type
d. action - Answers :c. body
T/F Strong and clear organization is a benefit of using Tables. - Answers :True
T/F A POST generates a query string. - Answers :False
The action attribute of a <form> tag may contain what values? - Answers :Absolute or
Relative URL
Which one of the following defines a CSS class selector, RED:
a. #RED {...}
b. .RED{...}
c. RED {...}
d. All of the Above
e. None of the Above - Answers :b. .RED{...}
Which level of CSS has the highest priority? - Answers :User Defined
For the following question use the HTML code below:
<body>
<div id="logo">
<h1>Education Sellers</h1>
<h2>Book Rep System</h2>
</div>
<h2>Technical Books</h2>
</body>
To change only the "Book Rep System" text to green text in the above HTML we would
use: - Answers :#logo h2{color: green;}
Explain the CSS Box Model. - Answers :The CSS Box Model is a way to view the
spacing around content in HTML. Each element is like a box and has a variety of areas
that can be spaced around it. Immediately around the content is the padding, after the
padding is the border, and lastly, the margin is between the border and the next