Chapter 12: HTML - Adding multimedia elements and Forms — Online MCQ Test
COMPUTER APPLICATIONS · CLASS 11th · Tamil Nadu State Board
Practice Chapter 12: HTML - Adding multimedia elements and Forms with a free chapter-wise online MCQ test.
This chapter covers: Exploring advanced web authoring this chapter covers audio and video embedding alongside form input elements. Students create interactive user input forms text fields checkboxes ra....
AI-generated questions from basic to board-exam level, with instant results and explanations.
Chapter 12: HTML - Adding multimedia elements and Forms — Important Questions & Answers
Which tag is used to embed video files in HTML5?
- A. <video>
- B. <media>
- C. <movie>
- D. <embed>
Answer: A. <video>
The <video> tag is the standard HTML5 element for embedding video content.
The <video> tag is the standard HTML5 element for embedding video content.
Which attribute is used to provide a link to the media file in the <audio> tag?
- A. link
- B. src
- C. href
- D. file
Answer: B. src
The 'src' attribute specifies the URL of the media file to be played.
The 'src' attribute specifies the URL of the media file to be played.
Which attribute enables the browser to show default playback controls like play and volume?
- A. play
- B. show
- C. controls
- D. display
Answer: C. controls
The 'controls' attribute adds the play/pause and volume buttons to the media player interface.
The 'controls' attribute adds the play/pause and volume buttons to the media player interface.
If you want to ensure a user fills out a field before submitting a form, which attribute is used?
- A. validate
- B. mandatory
- C. required
- D. checked
Answer: C. required
The 'required' attribute prevents form submission if the specific input field is empty.
The 'required' attribute prevents form submission if the specific input field is empty.
Which of these is NOT a valid attribute for the <form> tag?
- A. action
- B. method
- C. enctype
- D. src
Answer: D. src
The <form> tag uses action, method, and enctype, but it does not use a 'src' attribute.
The <form> tag uses action, method, and enctype, but it does not use a 'src' attribute.