Top 20 HTML MCQ Question

Top 20 Hyper text markup Language multiple choice question with answer.




1. What does HTML stand for? A. HyperText Markup Language 2. What is the correct HTML for creating a hyperlink? A. <a href="url">Link Text</a> 3. What is the correct HTML for creating an image? A. <img src="image.gif" alt="My Image"> 4. Which character is used to indicate an end tag? A. > 5. What is the correct HTML for making a text area? A. <textarea>Text Here</textarea> 6. What is the correct HTML for inserting a background image? A. <body background="image.gif"> 7. What is the correct HTML for making a checkbox? A. <input type="checkbox" name="vehicle" value="Bike"> 8. What is the correct HTML for creating a drop-down list? A. <select> <option value="volvo">Volvo</option> <option value="saab">Saab</option> <option value="fiat">Fiat</option> <option value="audi">Audi</option> </select> 9. What is the correct HTML for creating a radio button? A. <input type="radio" name="gender" value="male"> 10. What is the correct HTML for making a text bold? A. <strong>Text Here</strong> 11. What is the correct HTML for making a text italic? A. <em>Text Here</em> 12. What is the correct HTML for making a text underlined? A. <u>Text Here</u> 13. What is the correct HTML for creating a table? A. <table> <tr> <th>Firstname</th> <th>Lastname</th> </tr> <tr> <td>John</td> <td>Doe</td> </tr> </table> 14. How can you make a numbered list? A. <ol> <li>List Item 1</li> <li>List Item 2</li> <li>List Item 3</li> </ol> 15. How can you make a bulleted list? A. <ul> <li>List Item 1</li> <li>List Item 2</li> <li>List Item 3</li> </ul> 16. What is the correct HTML for making a text header? A. <h1>Text Here</h1> 17. What is the correct HTML for inserting a line break? A. <br> 18. What is the correct HTML for inserting a horizontal line? A. <hr> 19. What is the correct HTML for creating a div element? A. <div>Content Here</div> 20. What is the correct HTML for creating a comment? A. <!-- Comment Here -->

NOTE : आप Computer Science से सम्बंधित content हमे इस Mail Id पर भेजे जो हम आपके द्वारा भेजे हुए content को वेबसाइट पर आपकी photo सहित प्रकाशित करेंगे। official.cswithgk@gmail.com
Previous Post Next Post

Contact Form