Unit 1: Fundamentals of HTML - Practice Quiz

CSE326 — Internet Programming Laboratory 50 Questions
0 Correct 0 Wrong 50 Left
0/50

1 What does HTML stand for?

A. Hyper Text Markup Language
B. Hyper Tool Multi Language
C. Hyper Text Processing Language
D. Hyper Text Manipulation Language

2 Which organization is responsible for standardizing HTML?

A. Mozilla
B. Microsoft
C. Google
D. W3C (World Wide Web Consortium)

3 Which tag is considered the root element of an HTML document?

A. <html>
B. <body>
C. <root>
D. <head>

4 What is the primary function of the <!DOCTYPE html> declaration?

A. To link CSS files
B. To create a title for the page
C. To tell the browser which version of HTML the page is using
D. To close the HTML document

5 Where should metadata, such as the page title and character set, be placed in an HTML document?

A. After the </html> tag
B. Inside the <head> tag
C. Inside the <footer> tag
D. Inside the <body> tag

6 Which HTML tag is used to define the visible content of a web page?

A. <head>
B. <body>
C. <main>
D. <content>

7 How many levels of heading tags are available in HTML?

A. 5
B. 6
C. 4
D. Unlimited

8 Which tag represents the most important heading?

A. <header>
B. <head>
C. <h6>
D. <h1>

9 Which tag is used to define a paragraph?

A. <para>
B. <pg>
C. <p>
D. <text>

10 What is the correct tag to insert a line break without starting a new paragraph?

A. <break>
B. <br>
C. <newline>
D. <lb>

11 What does the <hr> tag define in HTML5?

A. A horizontal ruler for decoration only
B. A thematic break in the content
C. A header row
D. A hidden reference

12 Which of the following is an example of an unpaired (void) tag?

A. <h1>
B. <b>
C. <p>
D. <br>

13 Which tag is used to define important text, typically displayed in bold?

A. <b>
B. <imp>
C. <strong>
D. <bold>

14 What is the semantic difference between <b> and <strong>?

A. <strong> implies semantic importance, <b> is just stylistic
B. <b> creates a larger font than <strong>
C. There is no difference
D. <b> implies importance, <strong> is just stylistic

15 Which tag is used to emphasize text, typically displaying it in italics?

A. <em>
B. <italic>
C. <sl>
D. <i>

16 Which HTML element defines text that should be marked or highlighted?

A. <mark>
B. <hl>
C. <strong>
D. <highlight>

17 What is the purpose of the <small> tag?

A. To shrink the container size
B. To define smaller text, often used for copyright or side comments
C. To create a thumbnail image
D. To create a subscript

18 Which tag is used to define an abbreviation or acronym?

A. <abbr>
B. <abb>
C. <acr>
D. <short>

19 Which attribute is commonly used with <abbr> to show the full definition on hover?

A. title
B. alt
C. src
D. href

20 Which tag defines the title of a creative work (e.g., a book or movie)?

A. <work>
B. <title>
C. <cite>
D. <ref>

21 What is the purpose of the <dfn> tag?

A. To define a function
B. To delete text
C. To define the defining instance of a term
D. To display a default number

22 Which tag is used for a section that is quoted from another source (usually a block of text)?

A. <citation>
B. <blockquote>
C. <q>
D. <quote>

23 Which tag is used for short, inline quotations?

A. <quotation>
B. <blockquote>
C. <q>
D. <cite>

24 How do you write a comment in HTML?

A. / This is a comment /
B. <comment> This is a comment </comment>
C. // This is a comment
D. <!-- This is a comment -->

25 What characterizes a 'Paired Tag' in HTML?

A. It cannot contain attributes
B. It must strictly be paired with CSS
C. It only has an opening tag
D. It has both an opening and a closing tag

26 Which of the following is a main characteristic of Block-level elements?

A. They only take up as much width as necessary
B. They always start on a new line
C. They are used only for images
D. They cannot contain other elements

27 Which of the following is a main characteristic of Inline elements?

A. They cannot contain text
B. They start on a new line
C. They take up the full width of the page
D. They only take up as much width as necessary

28 Which of the following is a Block-level element?

A. <span>
B. <a>
C. <div>
D. <em>

29 Which of the following is an Inline element?

A. <p>
B. <h1>
C. <span>
D. <ul>

30 Is the <img> tag paired or unpaired?

A. Both
B. Unpaired
C. Paired
D. Neither

31 Which element is strictly required to appear within the <head> section?

A. <p>
B. <img>
C. <h1>
D. <title>

32 What happens if you do not close a paired tag like <p> in HTML5?

A. The browser will try to guess where to close it, potentially causing layout issues
B. The page will crash
C. The text will disappear
D. An error message pops up

33 Can a block-level element contain an inline element?

A. Only in the <head>
B. No, never
C. Only if it is an image
D. Yes, always

34 Can an inline element contain a block-level element?

A. Generally no, with some exceptions in HTML5
B. Yes, always
C. Only if using CSS
D. No, it creates a syntax error

35 Which tag is used to display text exactly as it is written, preserving spaces and line breaks?

A. <p>
B. <br>
C. <hr>
D. <pre>

36 What does the 'charset' attribute in the <meta> tag define?

A. The page description
B. The character encoding
C. The author name
D. The font style

37 Which of the following tags is semantically appropriate for emphasizing a warning or alert in text?

A. <strong>
B. <b>
C. <i>
D. <span>

38 The <head> tag is a container for:

A. Metadata
B. Headings h1-h6
C. Footers
D. Visible content

39 In the context of <abbr title='World Health Organization'>WHO</abbr>, what does the title attribute do?

A. Links to the website
B. It does nothing
C. Makes the text bold
D. Shows 'World Health Organization' as a tooltip on hover

40 Which tag would you use to reference the title of a book within a paragraph?

A. <cite>
B. <ref>
C. <book>
D. <title>

41 If you want to highlight a specific part of the text because of its relevance in a search result, which tag should be used?

A. <mark>
B. <em>
C. <b>
D. <strong>

42 Which HTML version introduced semantic tags like <mark> and <time>?

A. XHTML
B. HTML5
C. HTML 2.0
D. HTML 4.01

43 What is the default display behavior of the <h1> tag?

A. Hidden
B. Block-level
C. Flex
D. Inline

44 What is the default display behavior of the <strong> tag?

A. None
B. Grid
C. Block-level
D. Inline

45 Which tag serves as the container for all other HTML elements except the <!DOCTYPE>?

A. <main>
B. <html>
C. <body>
D. <head>

46 Why are comments used in HTML code?

A. To display messages to the user
B. To format the output text
C. To help developers understand the code
D. To execute scripts

47 The <br> tag stands for:

A. Border Radius
B. Break Line
C. Break Row
D. Break Ruler

48 Which element represents a term being defined within a description list or sentence?

A. <dd>
B. <dfn>
C. <dt>
D. <def>

49 What is the correct syntax for an attribute?

A. name:value
B. {name:value}
C. name(value)
D. name='value'

50 Which of the following elements creates a thematic break, traditionally rendered as a horizontal line?

A. <line>
B. <hr>
C. <break>
D. <tr >