The code for playing a video This code works because a. browsers ignore elements
ID: 3855057 • Letter: T
Question
The code for playing a video This code works because a. browsers ignore elements that they don't understand b. browsers skip to the first nested element that applies to them c. older browsers look for object elements d. older browsers look for embed element unless an object element if first The second object element in this code is intended for a. older IE browsers b. older non-IE browsers c. older IE browsers that don't support the video element d. older non-IE browsers that don't support the video element 6. When this code is loaded in a modern browser, which of the following is NOT true? a. The controls for the video player will be displayed. b. The video will start playing automatically. c. An image will be displayed in the video element before the video starts playing. d. The video will restart automatically when it finishes playing.Explanation / Answer
4.
c. Older browsers look for object elements
Older browsers that do not support HTML5 they can use <object> otherwise <object> is ignored by new browsers.
5.
d. Older non-IE browsers that do'nt support video element
before second object element specifies this and the browser does not support video element.
6.
c. An image will be displayed in the video element before the video starts playing
This is not true because for an image to be displayed poster attribute with url of the image is required which is not specified in video element.
The video element contains the controls attribute (a), autoplay attribute(b) and loop attribute (d) to restart automatically.