1.HTML Stands for:

  1. Hyper Tone Mangageable Language
  2. Hyper Touch Markup Language
  3. Hyper Text Markup Language
  4. Hyper Text Machine Language

Option 3, Hyper Text Markup Language




2.How Many types of List is in HTML?:

  1. 1
  2. 4
  3. 3
  4. 2

Option 3, ordered list, unordered list, description list




3.The correct sequence of HTML tags for starting a webpage is -

  1. head,body,html
  2. html,body,head
  3. body,head,html
  4. html,head,body

Option 4, html ,head,body




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

  1. hr
  2. lb
  3. br
  4. bl

Option 3, br tag is used to break line




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

  1. ol
  2. dl
  3. ul
  4. dd

Option 3, ul tag--unordered list




6.Which character is used to represent the closing of a tag in HTML?

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

Option 3, /-forward slash is used in closing tag




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

  1. ul
  2. li
  3. dl
  4. ol

Option 4, ol-- ordered list




8.Is the List attribute?

  1. ul
  2. type
  3. dl
  4. ol

Option 2, is correct.




9.The "hr" tag in HTML is used for -

  1. New Line
  2. Horizontal Line
  3. Vertical Line
  4. Horizontal Ruler

Option 2, Hr tag is use to insert horizontal line




10.What are the types of unordered or bulleted list values in HTML?-

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

Option 3,type=circle,disc,square




11.Which of the following is the correct way to start an ordered list with the count of numeric value 4??-

  1. < ol type = "1" initial = "4">
  2. <ol type = "1" begin = "4">
  3. <ol type = "1" num = "4">
  4. <ol type = "1" start = 4 >

Option 4,type=circle,disc,square




12.An HTML program is saved by using the ____ extension.?-

  1. .hmtl
  2. .html
  3. .htm
  4. both b and c

Option 4 is correct




13.The tags in HTML are -?-

  1. case sensitive
  2. Lowercase
  3. case insensitive
  4. Uppercase

Option 3, is correct <body> and <BODY> are same




14.Which of the following is the root tag of the HTML document?

  1. <head>
  2. <title>
  3. <html>
  4. <body>

Option 3, is correct <html> is the root element




15.Which is the correct way to comment out something in HTML?

  1. Using ## and #
  2. Using <!-- and -->
  3. Using </-- and -/->
  4. Using<!-- and -!>

Option 2, is correct <!-->




16.Which HTML tag is used to display the power in expression, i.e., (a2 - b2)?

  1. <sub>
  2. <pow>
  3. <sup>
  4. <br>

Option 3, For superscript we use<sup>




17.HTML is the standard ____language for creating Web pages.?

  1. scripting
  2. programming
  3. markup
  4. low level

Option 3, HTML is a Markup Language.




18.Who invented HTML?

  1. Dave Raggett
  2. Tim Berners-Lee
  3. Denis Ritchie
  4. All of the above

Option 2, HTML is invented by Tim Berneer's Lee




19.HTML tags with no content are called _____.

  1. Container Tag
  2. Empty Tag
  3. Advanced Tag
  4. Other Tag

Option 2, Tags with no content is known as Empty Tag




20.Which HTML tag is used to define bold text, without any extra importance?.

  1. <strong>
  2. <bold>
  3. <b>
  4. <strike>

Option 3, Tags with no extra importance is defined using <b> Tag




21. Which HTML tag is used to define text with strong importance?

  1. <strong>
  2. <bold>
  3. <b>
  4. <strike>

Option 1, Tags with extra importance is defined using <strong> Tag




22.Which HTML tag is used to define marked or highlighted text?

  1. <highlight>
  2. <bold>
  3. <mark>
  4. <highlighted>

Option 3, To highlight text we use <mark> Tag




23.Which is the correct HTML statement to display H20 in a paragraph?

  1. <p>H<sup>2</sup>O</p>
  2. <p>H<ins>2</ins>O</p>
  3. <p>H<below>2</below>O</p>
  4. <p>H<sub>2</sub>O</p>

Option 4, To highlight text we use <sup> Tag




24.Which is the correct HTML statement to display HelloHi! in a paragraph?

  1. <p><del>Hello</del><ins>Hi!</ins></p>
  2. <p><strike>Hello</strike><ins>Hi!</ins></p>
  3. <p><cut>Hello</cut><ins>Hi!</ins></p>
  4. Both a and b

Option 4, is correct.




25.Which HTML tag is used to define a hyperlink?

  1. <a>
  2. <anchor>
  3. <link>
  4. <href>

Option 1, <a> is used to create hyperlinks.




26.Which is the correct syntax of <a> tag?

  1. <a src="url">link text</a>
  2. <a link="url">link text</a>
  3. <a href="url">link text</a>
  4. <a srclink="url">link text</a>

Option 3, <a href="url">link text</a> this syntax is correct




27.Why "href" attribute is used with <a> tag?

  1. To define title text
  2. To define reference of a document
  3. To define destination URL
  4. All of the above

Option 3, href-->hypertext reference, used to contain url of the documents




28.What is the correct syntax of <img> tag?

  1. <img src="url">
  2. <img src="url" alt="alternatetext">
  3. <img src="url" alt="alternatetext" />
  4. All of the above

Option 3, <img src="url" alt="alternatetext" />