AllExam Dumps

DUMPS, FREE DUMPS, VCP5 DUMPS| VMWARE DUMPS, VCP DUMPS, VCP4 DUMPS, VCAP DUMPS, VCDX DUMPS, CISCO DUMPS, CCNA, CCNA DUMPS, CCNP DUMPS, CCIE DUMPS, ITIL, EXIN DUMPS,


READ Free Dumps For Microsoft- 70-480





Question ID 14920

An HTML page contains no embedded JavaScript or CSS code. The body of the page
contains only the following line of code.
<p id="test">test</p>
A CSS style sheet must be applied dynamically. The style must visibly change the
appearance of the paragraph on the page.
You need to apply a style the paragraph.
Which line of code should you use?

Option A

document.getElementById("test").style.border = "0";

Option B

document.getElementById("test").style.position = "static";

Option C

document.getElementById ("test").style.padding = "15px";

Option D

document.getElementById("test").style.top = "5px";

Correct Answer A
Explanation Explanation: The border shorthand property sets all the border properties in one declaration. The properties that can be set, are (in order): border-width, border-style, and border-color. It does not matter if one of the values above are missing, e.g. border:solid #ff0000; is allowed. Reference: Style border Property


Question ID 14921

You are creating an HTML5 application that allows users to play video on a page by using
the VIDEO element.
You need to enable the user to start, stop, and pause the video.
Which line of code should you add to the page?

Option A

&lt;video id= "myVideo" height="320" width="400" src="myVideo.vtt" contextmenu="pauseplay"> &lt;/video>

Option B

&lt;video id="myVideon height"="320" width="400" src="myVideo.vtt" controls> &lt;/video>

Option C

&lt;video _d="myVideon height="320" width="400" src="myVideo.vtt" autoplay> &lt;/video>

Option D

&lt;video id="myVideo" height="320" width="400" src="myVideo.vtt" contextinenu="Startstopn> &lt;/video>

Correct Answer B
Explanation Explanation: The HTML