The HTML Assessment Trivia Test! Quiz

Approved & Edited by ProProfs Editorial Team
The editorial team at ProProfs Quizzes consists of a select group of subject experts, trivia writers, and quiz masters who have authored over 10,000 quizzes taken by more than 100 million users. This team includes our in-house seasoned quiz moderators and subject matter experts. Our editorial experts, spread across the world, are rigorously trained using our comprehensive guidelines to ensure that you receive the highest quality quizzes.
Learn about Our Editorial Process
| By Omnimrg
O
Omnimrg
Community Contributor
Quizzes Created: 2 | Total Attempts: 2,576
Questions: 30 | Attempts: 563

SettingsSettingsSettings
The HTML Assessment Trivia Test! Quiz - Quiz


The HTML Assessment Trivia Test Quiz! This quiz is designed for those who want to assess their ability to create a user interface using HTML and at the same time using functionality of the HTML/CSS. Do you know how to use the different tags and how they are used? Take a refresher in this quiz and keep an eye out for others like it to increase your understanding. All the best!


Questions and Answers
  • 1. 

    What does the acronym HTML represent?

    • A.

      Hypertext Markup Language

    • B.

      Hyperlink Markup Language

    • C.

      Hypertext Marks Language

    • D.

      Hypertext

    Correct Answer
    A. Hypertext Markup Language
    Explanation
    HTML stands for Hypertext Markup Language. It is the standard markup language used for creating web pages and applications. HTML uses various tags to structure the content and define the layout of a web page. It allows the inclusion of hyperlinks, which are clickable elements that can navigate to different web pages or sections within the same page. HTML is the foundation of the World Wide Web and is essential for creating and displaying web content.

    Rate this question:

  • 2. 

    What identifies the start of a two-sided tag?

    • A.

      Start Tag

    • B.

      Beginning Tag

    • C.

      Opening Tag

    • D.

      Number One Tag

    Correct Answer
    C. Opening Tag
    Explanation
    The start of a two-sided tag is identified by the opening tag. This tag marks the beginning of the element and is used to define the start of a specific HTML tag. It is placed at the beginning of the tag and is followed by the tag name.

    Rate this question:

  • 3. 

    What identifies the end of a two-sided tag?

    • A.

      End Tag

    • B.

      Closing Tag

    • C.

      Last Tag

    • D.

      Finish Tag

    Correct Answer
    B. Closing Tag
    Explanation
    The end of a two-sided tag is identified by the closing tag. In HTML, tags are used to mark the beginning and end of elements. The opening tag is used to start an element, while the closing tag is used to end it. The closing tag is essential to properly structure and define the elements on a webpage. It ensures that the content within the tag is correctly interpreted by the browser. Therefore, the closing tag is what identifies the end of a two-sided tag.

    Rate this question:

  • 4. 

    What tag tells the computer that the document is going to be an HTML document?

    • A.

      Tell Tag

    • B.

      HTML Tag

    • C.

      Creation Tag

    • D.

      Identify Tag

    Correct Answer
    B. HTML Tag
    Explanation
    The HTML tag is used to indicate to the computer that the document is going to be an HTML document. This tag is placed at the beginning of the document and serves as the root element of the HTML file. It informs the browser that the content within the document should be interpreted as HTML code.

    Rate this question:

  • 5. 

    What tag usually contains information about the document that will not appear in the Web Page?

    • A.

      HTML Tag

    • B.

      Body Tag

    • C.

      Head Tag

    • D.

      Title Tag

    Correct Answer
    C. Head Tag
    Explanation
    The head tag usually contains information about the document that will not appear in the web page. This includes metadata such as the title of the page, links to external stylesheets, scripts, and other important information for search engines and browsers. The content within the head tag is not visible to the user but is essential for the proper functioning and optimization of the webpage.

    Rate this question:

  • 6. 

    What tag will have the information that will appear in the title bar of the Web Page?

    • A.

      HTML Tag

    • B.

      Body Tag

    • C.

      Head Tag

    • D.

      Title Tag

    Correct Answer
    D. Title Tag
    Explanation
    The information that will appear in the title bar of a web page is specified using the tag. This tag is placed within the section of the HTML document. The text within the tag is what will be displayed as the title of the web page in the browser's title bar or tab.

    Rate this question:

  • 7. 

    What tag will have the information that will be displayed in the Web Page?

    • A.

      HTML Tag

    • B.

      Body Tag

    • C.

      Head Tag

    • D.

      Title Tag

    Correct Answer
    B. Body Tag
    Explanation
    The body tag in HTML contains all the content that will be displayed on the web page. It includes text, images, links, and other elements that make up the visible part of the webpage. The body tag is placed within the HTML structure and is responsible for displaying the actual content that users see when they visit a website.

    Rate this question:

  • 8. 

    • A.

      Opening Tag

    • B.

      Beginning Tag

    • C.

      Closing Tag

    • D.

      Ending Tag

    Correct Answer
    A. Opening Tag
  • 9. 

    • A.

      Opening Tag

    • B.

      Beginning Tag

    • C.

      Closing Tag

    • D.

      Ending Tag

    Correct Answer
    C. Closing Tag
  • 10. 

    What is wrong with the following html code?

    • A.

      Nothing is wrong with the html code

    • B.

      Missing the opening body tag

    • C.

      Missing the closing body tag

    Correct Answer
    C. Missing the closing body tag
    Explanation
    The given html code is missing the closing body tag. This tag is necessary to properly close the body section of the html document. Without it, the code would be considered incomplete and could cause issues with the rendering and functionality of the webpage.

    Rate this question:

  • 11. 

    The following shows correct usage of html code?

    • A.

      True

    • B.

      False

    Correct Answer
    A. True
    Explanation
    The correct answer is "True" because the question asks whether the given usage of HTML code is correct or not. Since the given code is not provided in the question, we can assume that the statement "The following shows correct usage of HTML code" is true.

    Rate this question:

  • 12. 

    The following shows correct usage of html code.

    • A.

      True

    • B.

      False

    Correct Answer
    B. False
    Explanation
    The given statement is incorrect. It states that the following shows correct usage of HTML code, but this is not true. Since the statement is false, it means that the correct usage of HTML code is not shown in the following.

    Rate this question:

  • 13. 

    What tag will create a line break?

    • A.

      Title tag

    • B.

      List tag

    • C.

      Break tag

    • D.

      Body tag

    Correct Answer
    C. Break tag
    Explanation
    The break tag, represented as , is used to create a line break in HTML. It is a self-closing tag, meaning it does not require a closing tag. When the browser encounters this tag, it moves the text or element following it to a new line. This is commonly used to create space between paragraphs or to break lines of text within a single paragraph.

    Rate this question:

  • 14. 

    When displaying the following HTML code in a Web Browser, the list will be displayed as a bulleted list.

    • A.

      True

    • B.

      False

    Correct Answer
    B. False
    Explanation
    When displaying the given HTML code in a web browser, the list will not be displayed as a bulleted list. This is because the HTML code does not include any list tags such as or to indicate that it is a list. Without these tags, the web browser will not interpret the code as a list and will not display it as a bulleted list. Therefore, the correct answer is False.

    Rate this question:

  • 15. 

    When displaying the following HTML code in a Web Browser, the list will be displayed as an ordered list.

    • A.

      True

    • B.

      False

    Correct Answer
    A. True
    Explanation
    The given HTML code is displaying a list of items using the "ol" (ordered list) tag. This tag is used to create a numbered list in HTML. Therefore, when this code is displayed in a web browser, the list will be displayed as an ordered list with numbers next to each item.

    Rate this question:

  • 16. 

    What tag will identify items that will be placed in a list?

    • A.

      The ol tag

    • B.

      The ul tag

    • C.

      The li tag

    • D.

      The br tag

    Correct Answer
    C. The li tag
    Explanation
    The li tag is used to identify items that will be placed in a list. It stands for "list item" and is commonly used within the ol (ordered list) or ul (unordered list) tags to define individual items within a list. The li tag helps structure and organize content in a list format on a webpage.

    Rate this question:

  • 17. 

    What tag is used to insert a graphic?

    • A.

      The graphic tag

    • B.

      The image src tag

    • C.

      The image tag

    • D.

      The graphic src tag

    Correct Answer
    B. The image src tag
    Explanation
    The correct answer is "The image src tag". This is because the "img" tag in HTML is used to insert images into a webpage, and the "src" attribute within the "img" tag specifies the source file (URL or file path) of the image to be displayed. Therefore, the "image src tag" is the correct tag to use for inserting a graphic.

    Rate this question:

  • 18. 

    What is the purpose of the “alt” element?

    • A.

      To provide information beside the graphic

    • B.

      To provide text information about the graphic if the graphic does not appear

    • C.

      To provide an alternative graphic if the original graphic does not appear

    Correct Answer
    B. To provide text information about the graphic if the graphic does not appear
    Explanation
    The purpose of the "alt" element is to provide text information about the graphic if the graphic does not appear. This is important for accessibility purposes, as it allows individuals who are visually impaired or using assistive technologies to understand the content of the graphic. Additionally, it can also be helpful for situations where the graphic fails to load due to technical issues or slow internet connection.

    Rate this question:

  • 19. 

    How many HTML headings are available?

    • A.

      2

    • B.

      4

    • C.

      6

    • D.

      8

    Correct Answer
    C. 6
    Explanation
    There are six HTML headings available. HTML headings are used to define the structure and hierarchy of a webpage. They range from h1 to h6, with h1 being the highest level and h6 being the lowest level.

    Rate this question:

  • 20. 

    Which heading tag will create the largest heading?

    • A.

      H1 tag

    • B.

      H2 tag

    • C.

      H5 tag

    • D.

      H6 tag

    Correct Answer
    A. H1 tag
    Explanation
    The h1 tag will create the largest heading. In HTML, the heading tags are used to define the importance and hierarchy of the headings on a webpage. The h1 tag represents the highest level of importance and creates the largest heading size, while the h6 tag represents the lowest level of importance and creates the smallest heading size. Therefore, the h1 tag is the correct answer for creating the largest heading.

    Rate this question:

  • 21. 

    When adding color to a HTML document the user may use the name of the color or the color value.

    • A.

      True

    • B.

      False

    Correct Answer
    A. True
    Explanation
    When adding color to an HTML document, the user has the option to use either the name of the color or the color value. This means that they can either specify a color by its common name (e.g., "red" or "blue") or by its hexadecimal value (e.g., "#FF0000" or "#0000FF"). Both methods are valid and can be used interchangeably.

    Rate this question:

  • 22. 

    Is the following a correct way for adding color to a HTML Web page?

    • A.

      Yes

    • B.

      No

    Correct Answer
    B. No
    Explanation
    The given question asks whether the following method is correct for adding color to an HTML web page. However, the question does not provide any information or details about the method in question. Therefore, it is not possible to determine whether the given method is correct or not.

    Rate this question:

  • 23. 

    When using a color value, the numbers are separated by ______________?

    • A.

      Periods

    • B.

      Commas

    • C.

      Semi Colons

    • D.

      Colons

    Correct Answer
    B. Commas
    Explanation
    When using a color value, the numbers are separated by commas. This is because in most color systems, such as RGB or CMYK, colors are represented by three or four numerical values that indicate the intensity of each primary color. These values are typically separated by commas to clearly distinguish each component of the color.

    Rate this question:

  • 24. 

    How many generic fonts are available?

    • A.

      2

    • B.

      3

    • C.

      4

    • D.

      5

    Correct Answer
    D. 5
    Explanation
    There are five generic fonts available in CSS, which are serif, sans-serif, monospace, cursive, and fantasy. These fonts are commonly available on most operating systems and can be used as fallback options if specific fonts are not available.

    Rate this question:

  • 25. 

    Which of the following are all generic fonts?

    • A.

      Fantasy, Cursive, Serif, Monospace, and Times New Roman

    • B.

      Cursive, Fantasy, Serif, Monospace, and Sans Serif

    • C.

      Arial, Cursive, Fantasy, Serif, and Monospace

    • D.

      Cursive, Fantasy, Serif, Monospace, and Garamond

    Correct Answer
    B. Cursive, Fantasy, Serif, Monospace, and Sans Serif
    Explanation
    The correct answer is Cursive, Fantasy, Serif, Monospace, and Sans Serif. These fonts are considered generic because they are commonly available on most operating systems and can be used across different platforms and devices. Arial and Times New Roman, on the other hand, are specific font families and not considered generic. Garamond is also a specific font and not a generic one.

    Rate this question:

  • 26. 

    If you were to display the following HTML code using a Browser, what would appear in the title bar of the Web Browser?

    • A.

      Nothing

    • B.

      HTML Assessment

    • C.

      This Assessment is on HTML Basics

    Correct Answer
    B. HTML Assessment
    Explanation
    When the given HTML code is displayed in a web browser, "HTML Assessment" would appear in the title bar of the web browser. This is because the text "HTML Assessment" is the second line in the code and it is enclosed in the title tag (). The text within the title tag is typically displayed in the title bar of the browser, providing a brief description or title for the webpage.

    Rate this question:

  • 27. 

    If you were to display the following HTML code using a Browser, what would appear in the display area of the Web Brower?

    • A.

      Nothing

    • B.

      HTML Assessment

    • C.

      This Assessment is on HTML Basics

    Correct Answer
    A. Nothing
    Explanation
    The given HTML code will display the text "Nothing HTML Assessment This Assessment is on HTML Basics" in the display area of the web browser.

    Rate this question:

  • 28. 

    Does the following show correct usage of adding color to HTML code?

    • A.

      Yes

    • B.

      No

    Correct Answer
    A. Yes
    Explanation
    The given correct answer is "Yes." This suggests that the following does show correct usage of adding color to HTML code.

    Rate this question:

  • 29. 

    Does the following show correct usage of adding color to HTML code?

    • A.

      Yes

    • B.

      No

    Correct Answer
    B. No
    Explanation
    The given answer "No" suggests that the following does not show correct usage of adding color to HTML code. However, without the actual code or context provided in the question, it is difficult to determine the exact reason for this answer. It is possible that the code is missing necessary syntax or attributes for adding color, or it may contain errors that prevent the color from being displayed correctly.

    Rate this question:

  • 30. 

    Will the Heading 6 tag create the smallest HTML heading?

    • A.

      Yes

    • B.

      No

    Correct Answer
    A. Yes
    Explanation
    The Heading 6 tag in HTML creates a smaller heading compared to Heading 1, Heading 2, Heading 3, Heading 4, and Heading 5 tags. Therefore, the statement "Yes" is correct.

    Rate this question:

Quiz Review Timeline +

Our quizzes are rigorously reviewed, monitored and continuously updated by our expert board to maintain accuracy, relevance, and timeliness.

  • Current Version
  • Mar 21, 2023
    Quiz Edited by
    ProProfs Editorial Team
  • Jul 14, 2012
    Quiz Created by
    Omnimrg
Back to Top Back to top
Advertisement
×

Wait!
Here's an interesting quiz for you.

We have other quizzes matching your interest.