Home » HTML » HTML Media » Question
  1. In HTML Audio/Video DOM __________ sets or returns whether the audio/video should start over again when finished.
    1. autoplay
    2. seeking
    3. loop
    4. played
    5. None of these
Correct Option: C

The loop attribute is a boolean attribute. When present, it specifies that the audio will start over again, every time it is finished. With autoplay, it ensures whether video/audio should play immediately after loading page. Seeking returns whether user is currently seeking video/audio. Timeranges representing played parts of audio/video is set by played attribute.



Your comments will be displayed only after manual approval.