Total Pageviews

Friday, September 11, 2026

COMPUTISM LAB CALCUTTA AIRPORT ENGLISH HIGH SCHOOL

💻 🧠 🤖

COMPUTISM LAB

CLASS 6 HALF YEARLY EXAMINATION

HTML Basic Tags – Answer Sheet

Class: 6 Max Marks: 100 Time: 2 Hours

📝 SECTION A – Fill in the Blanks

  1. The <title> tag contains the title of an HTML document.
  2. To break a line and move to the next line, the <br> tag is used.
  3. The <b> tag is used to make text appear in bold letters.
  4. The <u> tag is used to display an underline beneath text.
  5. The <i> tag is used to display text in italics.
  6. The <sub> tag creates subscript text, such as the number 2 in H2O.
  7. The <sup> tag creates superscript text, such as the power 2 in X2.
  8. All the visible content of a webpage must be placed inside the <body> tag.
  9. The <title> tag is placed inside the head section to define the document title.
  10. HTML stands for HyperText Markup Language.

🎯 SECTION B – Multiple Choice Questions

1. Which tag is used to insert a single line break?
Answer: (b) <br>
2. Which tag makes text bold?
Answer: (b) <b>
3. Which tag underlines text?
Answer: (c) <u>
4. Which tag is used for italic text?
Answer: (c) <i>
5. Where should the <title> tag be placed?
Answer: (b) Inside <head>
6. Which tag displays text below the baseline?
Answer: (a) <sub>
7. Which tag displays text above the baseline?
Answer: (b) <sup>
8. Where do you place text that appears on the webpage?
Answer: (c) <body>
9. Which tag is an empty tag?
Answer: (c) <br>
10. What does the <title> element define?
Answer: (b) The title shown on the browser tab

🧠 SECTION C – Assertion Based MCQs

  1. Answer: (a)
    Both Assertion and Reason are true, and Reason correctly explains the Assertion.
  2. Answer: (a)
    Both Assertion and Reason are true, and Reason correctly explains the Assertion.
  3. Answer: (c)
    Assertion is false, but Reason is true. The <title> tag belongs inside the <head>, not the body.
  4. Answer: (a)
    Both Assertion and Reason are true, and Reason correctly explains the Assertion.
  5. Answer: (a)
    Both Assertion and Reason are true, and Reason correctly explains the Assertion.
  6. Answer: (c)
    Assertion is false, but Reason is true. The <head> contains metadata and the document title; it is not the visible webpage body.
  7. Answer: (a)
    Both Assertion and Reason are true, and Reason correctly explains the Assertion.
  8. Answer: (a)
    Both Assertion and Reason are true, and Reason correctly explains the Assertion.
  9. Answer: (c)
    Assertion is false, but Reason is true. The <br> tag is an empty element and does not require a separate closing tag.
  10. Answer: (a)
    Both Assertion and Reason are true, and Reason correctly explains the Assertion.

✔️ SECTION D – True or False

1. The <b> tag is used to make text bold.
🟢 TRUE
2. The <br> tag requires a matching closing tag </br>.
🔴 FALSE
3. The <title> tag must be placed inside the <head> tag.
🟢 TRUE
4. The <sub> tag makes text appear above the normal line.
🔴 FALSE
5. The <i> tag displays text in italic format.
🟢 TRUE
6. The <body> tag contains all visible content of the webpage.
🟢 TRUE
7. The <u> tag is used to underline text.
🟢 TRUE
8. The <sup> tag is used for superscript text.
🟢 TRUE
9. The <head> tag is placed after the <body> tag.
🔴 FALSE
10. HTML tags are written inside angle brackets.
🟢 TRUE

💻 SECTION E – HTML Programming Answers

Program 1 – Name, School Name and H₂O

Answer: The following HTML program uses <head>, <title>, <body>, <b>, <u>, <br> and <sub>.

<!DOCTYPE html>
<html>

<head>
    <title>My Introduction</title>
</head>

<body>

    <b>My Name</b>
    <br>

    <u>My School Name</u>
    <br>

    H<sub>2</sub>O

</body>

</html>
Output:

My Name
My School Name
H2O

Program 2 – Maths Formula

Answer: The following program displays the title in italic and uses the <sup> tag for powers.

<!DOCTYPE html>
<html>

<head>
    <title>Maths Formula</title>
</head>

<body>

    <i>Maths Formula</i>
    <br>

    <b>X<sup>2</sup> + Y<sup>2</sup></b>

</body>

</html>
Output:

Maths Formula
X2 + Y2

📚 Quick HTML Tag Reference

Tag Purpose Example
<head> Contains document information <head>...</head>
<title> Sets browser tab title <title>Home</title>
<body> Contains visible webpage content <body>Hello</body>
<br> Creates a line break Hello<br>World
<b> Makes text bold <b>Hello</b>
<u> Underlines text <u>Hello</u>
<i> Makes text italic <i>Hello</i>
<sub> Creates subscript H<sub>2</sub>O
<sup> Creates superscript X<sup>2</sup>
⭐ 💻 ⭐

Best of Luck for Your Examination!

Keep Learning • Keep Practising • Keep Exploring 🚀

CREATED BY BIJAN KRISHNA PAUL

No comments:

Post a Comment