Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

the ____________________ selector for an animation defines how the properties fo

ID: 3719253 • Letter: T

Question

the ____________________ selector for an animation defines how the properties for an animation change.

The normalize.css style sheet

Causes all browsers to use their default styles instead of the styles in the user style sheet

Adds the HTML5 semantic elements to the browser’s DOM

Forces older browsers to recognize the HTML5 semantic elements

Causes all browsers to render HTML elements the same way

If a form contains a file upload control, the method attribute of the form must be set to ____________________.

f necessary, you can use CSS to change the bullets, numbers, or __________________________ of list items.

The attributes of a form element specify

the name of the submit button and the URL for the server-side script

the submission method and the URL for the server-side script

the submission method and whether the data is passed as part of the URL

the name of the submit button and the submission method

A web page that uses a fixed layout

adapts only on desktop browsers

adapts gracefully to all screen sizes

maintains the same width only on desktop browsers

maintains the same width for all screen sizes

Example 12-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>

(Refer to example 12-1) This code works because

browsers ignore elements that they don’t understand

older browsers look for object elements

browsers skip to the first nested element that applies to them

older browsers look for embed elements unless an object element is first

a.

Causes all browsers to use their default styles instead of the styles in the user style sheet

b.

Adds the HTML5 semantic elements to the browser’s DOM

c.

Forces older browsers to recognize the HTML5 semantic elements

d.

Causes all browsers to render HTML elements the same way

If a form contains a file upload control, the method attribute of the form must be set to ____________________.

f necessary, you can use CSS to change the bullets, numbers, or __________________________ of list items.

The attributes of a form element specify

a.

the name of the submit button and the URL for the server-side script

b.

the submission method and the URL for the server-side script

c.

the submission method and whether the data is passed as part of the URL

d.

the name of the submit button and the submission method

A web page that uses a fixed layout

a.

adapts only on desktop browsers

b.

adapts gracefully to all screen sizes

c.

maintains the same width only on desktop browsers

d.

maintains the same width for all screen sizes

Example 12-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>

(Refer to example 12-1) This code works because

a.

browsers ignore elements that they don’t understand

b.

older browsers look for object elements

c.

browsers skip to the first nested element that applies to them

d.

older browsers look for embed elements unless an object element is first

Explanation / Answer

1. d. Adds the HTML5 semantic elements to the browser’s DOM
2. c. the submission method and whether the data is passed as part of the URL
3. d. maintains the same width for all screen sizes
4. c. Browsers skip to the first nested element that applies to them

**Comment for any further queries.