Unit 1 - Practice Quiz

CSE326 50 Questions
0 Correct 0 Wrong 50 Left
0/50

1 What does HTML stand for?

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

2 Which organization is responsible for standardizing HTML?

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

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

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

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

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

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

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

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

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

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

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

8 Which tag represents the most important heading?

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

9 Which tag is used to define a paragraph?

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

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

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

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

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

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

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

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. <b> implies importance, <strong> is just stylistic
B. <strong> implies semantic importance, <b> is just stylistic
C. <b> creates a larger font than <strong>
D. There is no difference

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

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

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

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

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

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

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

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

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

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

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

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

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

A. To define the defining instance of a term
B. To define a function
C. To delete text
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. <quote>
B. <citation>
C. <blockquote>
D. <q>

23 Which tag is used for short, inline quotations?

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

24 How do you write a comment in HTML?

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

25 What characterizes a 'Paired Tag' in HTML?

A. It must strictly be paired with CSS
B. It only has an opening tag
C. It cannot contain attributes
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 cannot contain other elements
D. They are used only for images

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

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

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

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

29 Which of the following is an Inline element?

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

30 Is the <img> tag paired or unpaired?

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

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

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

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

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

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

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

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

A. Generally no, with some exceptions in HTML5
B. Only if using CSS
C. Yes, always
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. <br>
B. <hr>
C. <p>
D. <pre>

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

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

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

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

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. Makes the text bold
B. Shows 'World Health Organization' as a tooltip on hover
C. It does nothing
D. Links to the website

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

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

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. <b>
B. <mark>
C. <em>
D. <strong>

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

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

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

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

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

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

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

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

46 Why are comments used in HTML code?

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

47 The <br> tag stands for:

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

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. <tr >
B. <break>
C. <hr>
D. <line>