• and
  • None of the above
  • Answer: (c)

    and

    Explanation: The

    tag in HTML is used to define the rows in the table. It can consist one or more


    19) The


    tag in HTML is used for -
    1. new line
    2. vertical ruler
    3. new paragraph
    4. horizontal ruler

    Answer: (d) horizontal ruler

    Explanation: The


    tag is used to specify a paragraph-level thematic break in HTML document. It is called a horizontal rule and draws a horizontal line.

    20) Which of the following attribute is used to provide a unique name to an element?

    1. class
    2. id
    3. type
    4. None of the above

    Answer: (b) id

    Explanation: The id attribute is used to specify a unique id for an element of the HTML document. It allocates the unique identifier which can be used by the JavaScript and CSS to perform certain tasks.


    21) Which of the following HTML tag is used to display the text with scrolling effect?

    1. None of the above

    Answer: (a)

    Explanation: The tag is a non-standard HTML element that is used to scroll a text or image either horizontally or vertically. In simple words, we can say that it automatically scrolls the image or text in up, down, left, and right direction.


    22) Which of the following HTML tag is the special formatting tag?

    1. None of the above

    Answer: (c)

     
         

    Explanation: The HTML

     tag is used to specify pre-formatted texts. Texts within 
    tag is displayed in a fixed-width font. Usually, it is displayed in courier font. It maintains both line break space.

    23) Which of the following is the correct way to send mail in HTML?

    1. None of the above

    Answer: (a)

    Explanation: We can use the (anchor tag) tag, and the href attribute to mail a person.


    24) Which of the following is the container for

    ,

    HTML Multiple choice questions (MCQ's)

    1) HTML stands for -

    1. HighText Machine Language
    2. HyperText and links Markup Language
    3. HyperText Markup Language
    4. None of these

    Answer: (c) HyperText Markup Language

    Explanation: HTML is an acronym that stands for HyperText Markup Language, which is used for creating web pages and web applications.

    HyperText simply means "Text within Text." A text has a link within it, is a hypertext. A markup language is a computer language that is used to apply layout and formatting conventions to a text document.


    2) The correct sequence of HTML tags for starting a webpage is -

    1. Head, Title, HTML, body
    2. HTML, Body, Title, Head
    3. HTML, Head, Title, Body
    4. HTML, Head, Title, Body

    Answer: (d) HTML, Head, Title, Body

    Explanation: The correct sequence of HTML tags to start a webpage is html, head, title, and body.


    3) Which of the following element is responsible for making the text bold in HTML?


    Answer: (c)

    Explanation: The (bold tag) tag in HTML is used to display the written text in bold format.


    4) Which of the following tag is used for inserting the largest heading in HTML?

    Answer: (b)

    Explanation: The

    tag is used to insert the main heading or the highest level heading.


    5) Which of the following tag is used to insert a line-break in HTML?


    Answer: (a)

    Explanation: The
    tag in the HTML document is used to create a line break in a text. If we place the
    tag in HTML code, then it works the same as pressing the enter key in a word processor.


    6) How to create an unordered list (a list with the list items in bullets) in HTML?

        Answer: (a)

          Explanation: The

            tag in HTML is used to display the list items in a bulleted format. There can be four types of an unordered list: disc, circle, square, and none.

        7) Which character is used to represent the closing of a tag in HTML?

        1. \
        2. !
        3. /
        4. .

        Answer: (c) /

        Explanation: The forward-slash (/) character is used to indicate the closing of a tag in HTML.


        8) How to create a hyperlink in HTML?

        1. tutorialsinfo.com
        2. tutorialsinfo.com
        3. www.tutorialsinfo.com

        Answer: (a) tutorialsinfo.com

        Explanation: The anchor tag and the href attribute is used to create the link in HTML.


        9) How to create an ordered list (a list with the list items in numbers) in HTML?

            Answer: (b)

              Explanation: The

                tag in HTML is used to display the list items in a numbered format. There can be different types of numbered list: numeric number, capital alphabet, small alphabet, etc.

            10) Which of the following element is responsible for making the text italic in HTML?

            Answer: (a)

            Explanation: The (italic tag) tag in HTML is used to display the written text in italic format.


            11) How to insert an image in HTML?

            Answer: (d)

            Explanation: The img tag and the src attribute is used to display an image on the webpage.


            12) How to add a background color in HTML?

            Answer: (c)

            Explanation: The bgcolor attribute is used to set the background color of an HTML element.


            13) is -

            1. a format tag.
            2. an empty tag.
            3. All of the above
            4. None of the above

            Answer: (b) an empty tag

            Explanation: The tag in HTML is used to represent a form input control in HTML document.


            14) Which of the following tag is used to make the underlined text?

              Answer: (c)

              Explanation: The (underline tag) tag in HTML is used to display the underlined text. It rendered as a solid underlined text, but it can be changed using CSS properties.


              15) How to create a checkbox in HTML?

              Answer: (a)

              Explanation: To create a checkbox in HTML, we have to use the tag and give the value checkbox to its type attribute.


              16) Which of the following tag is used to define options in a drop-down selection list?

              Answer: (d)

              Explanation: The


              17) HTML tags are enclosed in-

              1. # and #
              2. { and }
              3. ! and ?
              4. < and >

              Answer: (d) < and >

              Explanation: All HTML tags must be enclosed within angular < > brackets.


              18) Which of the following tag is used to add rows in the table?

              and and
              head cells and data cells to define a single row of HTML table.
              , and ?
            1. All of the above
            2. Answer: (b)

              Explanation: The

              tag in HTML, is generally used to display data in tabular format. We can create a table to display the data in the tabular form using the
              element, with the help of ,
              , and elements.

              25) How to insert a background image in HTML?

              1. None of the above

              Answer: (a)

              Explanation: To apply a background image on entire document, we have to specify the background attribute in the of the HTML document.


              26) What are the types of unordered or bulleted list in HTML?

              1. disc, square, triangle
              2. polygon, triangle, circle
              3. disc, circle, square
              4. All of the above

              Answer: (c) disc, circle, square

              Explanation: The unordered or bulleted list in HTML is used to display the elements in a bulleted format. Mainly, there are three types of an unordered list: disc, circle, and square.


              27) Which of the following is the correct way to create a list using the lowercase letters?

                    1. None of the above

                    Answer: (b)

                      Explanation: The type attribute is used with the

                        tag to specify the type of list items.


                      28) Which of the following is the correct way to start an ordered list with the count of numeric value 4?

                              Answer: (d)

                                Explanation: The start attribute is used with the

                                  tag to specify where to start the list items.


                                29) Which of the following HTML attribute is used to define inline styles?

                                1. style
                                2. type
                                3. class
                                4. None of the above

                                Answer: (a) style

                                Explanation: The style attribute in HTML is used to change the style of existing HTML elements. It can be used with any HTML tag. To apply the style on the HTML tag, you should have the basic knowledge of CSS properties.


                                30) Which of the following is the paragraph tag in HTML?

                                1. None of the above

                                Answer: (a)

                                Explanation: The

                                (paragraph tag) tag in HTML is used to define a paragraph in a webpage. The HTML

                                tag indicates the starting of new paragraph.


                                31) An HTML program is saved by using the ____ extension.

                                1. .ht
                                2. .html
                                3. .hml
                                4. None of the above

                                Answer: (b) .html

                                Explanation: The .html or .htm extension both are used to save the HTML program. We can save our HTML file either by using the .html extension or by .htm extension. When the file delivered to the network, the HTML extension indicates that the content of file is HTML.


                                32) A program in HTML can be rendered and read by -

                                1. Web browser
                                2. Server
                                3. Interpreter
                                4. None of the above

                                Answer: (a) Web browser

                                Explanation: HTML programs can be read and rendered by the web browser. A web browser can support several web pages.


                                33) The tags in HTML are -

                                1. case-sensitive
                                2. in upper case
                                3. not case sensitive
                                4. in lowercase

                                Answer: (c) not case sensitive

                                Explanation: HTML is a case-insensitive language, which means we can use tags either in the upper-case or in lower-case. It is recommended to write all tags in the lowercase for readability, consistency, etc.


                                34) Which of the following is the root tag of the HTML document?