IT Study
Section-one-quizTheory VaultFree NotesSubjectiveOne LineSyllabusPast PapersMCQ PracticeInstitutes
0 day streakSign in

Exam prep that stays consistent

IT Study

Daily practice space for computer operator and IT-focused exams. Build streaks, revise key topics, and keep your momentum.

Navigation

  • Section-one-quiz
  • Theory Vault
  • Free Notes
  • Subjective
  • One Line
  • Syllabus
  • Past Papers
  • MCQ Practice
  • Institutes

Resources

  • Practice Mistakes

Tools

  • Vacancy Updates

Copyright 2026 IT Study. All rights reserved.

Weekly activity map shows your real consistency.

Home/Past Papers/PSC Computer Operator Paper II – 2082/Question 4
View complete paper
Public Service Commission (PSC)•2082 BS•Question 4 of 9

What is HTML? Explain the structure of an HTML document with example.

6 marks

Question source

Exam year
2082 BS / 2025 AD
Level
Level 4
Paper
Paper II – Subjective
Section
Section A: Short Answer Questions (5 × 6 = 30 marks)

Model answer

HTML (HyperText Markup Language) is the standard markup language used to create and structure content on web pages. It uses tags to define elements like headings, paragraphs, links, images, and tables.

Structure of an HTML document:

<!DOCTYPE html>
<html>
  <head>
    <title>Page Title</title>
    <meta charset="UTF-8">
  </head>
  <body>
    <h1>Welcome</h1>
    <p>This is a paragraph.</p>
  </body>
</html>
  • <!DOCTYPE html> — Declares the document type (HTML5)
  • <html> — Root element of the page
  • <head> — Contains meta-information (title, charset, styles)
  • <title> — Sets the browser tab title
  • <body> — Contains visible page content
  • <h1> to <h6> — Heading tags
  • <p> — Paragraph tag
Previous questionQuestion 3: What is database normalization? Explain First, Second, and Third Normal Forms with examples.Next question Question 5: What is cyber security? Explain any four types of cyber threats.

Question 4 of 9 from PSC Computer Operator Paper II – 2082

Open all questions