Web Design Midterm

advertisement
Web Design Midterm
Multiple Choice
Identify the choice that best completes the statement or answers the question.
____
1. An HTTP response is sent from _____ to ______.
____
2. When a client requests a dynamic web page, the HTML is generated by the ________.
____
3. Which of the following is NOT a guideline for user accessibility?
____
4. Three of the common CSS selectors select
____
5. The class attribute has the following properties:
____
6. The <a> element that follows displays:
<a href="update.html">Update</a>
____
7. The img element that follows (does what with the text "Murach Logo")
<p><img src="../images/logo.gif" alt="Murach Logo"></p>
____
8. The <a> element that follows goes to a web page (in what folder)
<a href="books/javscript.html">JavaScript and DOM Scripting</a>
____
9. Which of the following is NOT one of the ways that you can specify a color in CSS?
____ 10. Which of the following can you NOT do when adding shadows to text?
____ 11. To calculate the height of a box when using the box model, you add the height of the content area to the sum of
the heights of the
____ 12. You use a reset selector to
____ 13. The code that follows
padding: .5em 0 .25em;
applies this padding to an element on which sides?:
____ 14. When you set the float property for a block element to left, the elements that follow it will flow into the space
____ 15. Which of the following techniques can you NOT use to create a two-column layout?
____ 16. When you set the position property for a block element to absolute, the browser
____ 17. In the table that follows, (how are the rowspan and colspan attributes used)
____ 18. You can use the CSS3 structural pseudo-classes to format a table without using
____ 19. To indicate if a cell is associated with a column or row, you use the ______ attribute.
____ 20. How many radio buttons from the following code can be selected at any given time?
<input type="radio" name="address" value="Home">Home Address
<input type="radio" name="delivery" value="FedEx">Federal Express
<input type="radio" name="delivery" value="UPS">UPS
____ 21. The CSS3 selectors for data validation are
____ 22. To associate a field with a data list, you set
Example 11-1: The code for playing a video
<video id="videoplayer" width="480" height="270" controls loop autoplay>
<source src="media/sjv_speakers_sampson.mp4">
<source src="media/sjv_speakers_sampson.webm" type='video/webm;
codecs="vp8, vorbis"'>
<source src="media/sjv_speakers_sampson.ogv" type='video/ogg;
codecs="theora, vorbis"'>
<object type="application/x-shockwave-flash" width="480" height="270">
<param name="movie" value="media/sjv_speakers_sampson.swf">
<param name="wmode" value="transparent">
<param name="quality" value="high">
<!--[if !IE]>-->
<object type="application/x-shockwave-flash"
data="media/sjv_speakers_sampson.swf"
width="480" height="270">
<param name="wmode" value="transparent">
<param name="quality" value="high">
</object>
<!--<![endif]-->
</object>
</video>
____ 23. (Refer to example 11-1) The second object element in this code is intended for
____ 24. When a link element for a style sheet has a media attribute that specifies “print”, that style sheet is used
____ 25. In a style sheet for printing, if you want a page break to occur before an element is printed, you can use CSS to
set the
____ 26. In a style sheet for printing, the orphans property can be used to specify
____ 27. Which of the following is NOT a way to show the users where they are in the web site?
____ 28. Top-down design refers to the notion that all design projects should proceed from ____ to ______.
____ 29. Stepwise refinement refers to the notion that
____ 30. The system lifecycle consists of
Download