Chapter 10: HTML - Structural Tags — Online MCQ Test
COMPUTER APPLICATIONS · CLASS 11th · Tamil Nadu State Board
Practice Chapter 10: HTML - Structural Tags with a free chapter-wise online MCQ test.
This chapter covers: Focusing on web page design this chapter details basic HTML document structures and essential elements. Students learn tags for head body title and fundamental page layout configur....
AI-generated questions from basic to board-exam level, with instant results and explanations.
Chapter 10: HTML - Structural Tags — Important Questions & Answers
Which tag is used as the root element of an HTML document?
- A. <html>
- B. <head>
- C. <body>
- D. <title>
Answer: A. <html>
The <html> tag serves as the container for all other HTML elements, acting as the root of the document.
The <html> tag serves as the container for all other HTML elements, acting as the root of the document.
Which section of an HTML document is used to provide information about the page, such as the title and metadata?
- A. <body>
- B. <head>
- C. <header>
- D. <footer>
Answer: B. <head>
The <head> section contains non-visible information, including the title of the document and links to external resources.
The <head> section contains non-visible information, including the title of the document and links to external resources.
Which tag contains the visible content of an HTML document?
- A. <head>
- B. <body>
- C. <main>
- D. <section>
Answer: B. <body>
The <body> tag encloses all the content that is displayed to the user, such as text, images, and links.
The <body> tag encloses all the content that is displayed to the user, such as text, images, and links.
Compare <head> and <body>: Which statement is true?
- A. Content inside <head> is visible on the page, while content inside <body> is hidden.
- B. Both <head> and <body> are inside the <title> tag.
- C. <head> contains metadata, while <body> contains the actual visible content of the page.
- D. You can have multiple <body> tags in one document.
Answer: C. <head> contains metadata, while <body> contains the actual visible content of the page.
The <head> element provides structural info for the browser, while the <body> element contains the viewable content.
The <head> element provides structural info for the browser, while the <body> element contains the viewable content.
Consider a situation where a developer wants to link an external CSS file to their HTML. Where should this link tag be placed?
- A. At the very beginning of the <body> tag.
- B. Inside the <head> tag.
- C. Directly inside the <html> tag after the <body> closes.
- D. At the very end of the <body> tag.
Answer: B. Inside the <head> tag.
External CSS files are linked using the <link> tag, which must be placed inside the <head> section.
External CSS files are linked using the <link> tag, which must be placed inside the <head> section.