HTML Multiple choice questions (MCQ's)1) HTML stands for -
Answer: (c) HyperText Markup Language Explanation: HTML is an acronym that stands for HyperText Markup Language, which is used for creating web pages and web applications. HyperText simply means "Text within Text." A text has a link within it, is a hypertext. A markup language is a computer language that is used to apply layout and formatting conventions to a text document. 2) The correct sequence of HTML tags for starting a webpage is -
Answer: (d) HTML, Head, Title, Body Explanation: The correct sequence of HTML tags to start a webpage is html, head, title, and body. 3) Which of the following element is responsible for making the text bold in HTML? Answer: (c) Explanation: The (bold tag) tag in HTML is used to display the written text in bold format. 4) Which of the following tag is used for inserting the largest heading in HTML? Answer: (b) Explanation: The tag is used to insert the main heading or the highest level heading.5) Which of the following tag is used to insert a line-break in HTML? Answer: (a) Explanation: The 6) How to create an unordered list (a list with the list items in bullets) in HTML? Answer: (a) Explanation: The
7) Which character is used to represent the closing of a tag in HTML?
Answer: (c) / Explanation: The forward-slash (/) character is used to indicate the closing of a tag in HTML. 8) How to create a hyperlink in HTML? Answer: (a) javaTpoint.com Explanation: The anchor tag and the href attribute is used to create the link in HTML. 9) How to create an ordered list (a list with the list items in numbers) in HTML? Answer: (b) Explanation: The
10) Which of the following element is responsible for making the text italic in HTML? Answer: (a) Explanation: The (italic tag) tag in HTML is used to display the written text in italic format. 11) How to insert an image in HTML? Answer: (d) Explanation: The img tag and the src attribute is used to display an image on the webpage. 12) How to add a background color in HTML? Answer: (c) Explanation: The bgcolor attribute is used to set the background color of an HTML element. 13) is -
Answer: (b) an empty tag Explanation: The tag in HTML is used to represent a form input control in HTML document. 14) Which of the following tag is used to make the underlined text? Answer: (c) Explanation: The (underline tag) tag in HTML is used to display the underlined text. It rendered as a solid underlined text, but it can be changed using CSS properties. 15) How to create a checkbox in HTML? Answer: (a) Explanation: To create a checkbox in HTML, we have to use the tag and give the value checkbox to its type attribute. 16) Which of the following tag is used to define options in a drop-down selection list? Answer: (d) Explanation: The 17) HTML tags are enclosed in-
Answer: (d) < and > Explanation: All HTML tags must be enclosed within angular < > brackets. 18) Which of the following tag is used to add rows in the table?
Answer: (c) Explanation: The head cells and | data cells to define a single row of HTML table.
| 19) The tag in HTML is used for -
Answer: (d) horizontal ruler Explanation: The tag is used to specify a paragraph-level thematic break in HTML document. It is called a horizontal rule and draws a horizontal line. 20) Which of the following attribute is used to provide a unique name to an element?
Answer: (b) id Explanation: The id attribute is used to specify a unique id for an element of the HTML document. It allocates the unique identifier which can be used by the JavaScript and CSS to perform certain tasks. 21) Which of the following HTML tag is used to display the text with scrolling effect?
|