1.HTML Stands for:
- Hyper Tone Mangageable Language
- Hyper Touch Markup Language
- Hyper Text Markup Language
- Hyper Text Machine Language
Option 3, Hyper Text Markup Language
2.How Many types of List is in HTML?:
- 1
- 4
- 3
- 2
Option 3, ordered list, unordered list, description list
3.The correct sequence of HTML tags for starting a webpage is -
- head,body,html
- html,body,head
- body,head,html
- html,head,body
Option 4, html ,head,body
4.Which of the following tag is used to insert a line-break in HTML?
- hr
- lb
- br
- 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?
- ol
- dl
- ul
- dd
Option 3, ul tag--unordered list
6.Which character is used to represent the closing of a tag in HTML?
- \
- !
- /
- <>
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?
- ul
- li
- dl
- ol
Option 4, ol-- ordered list
8.Is the List attribute?
- ul
- type
- dl
- ol
Option 2, is correct.
9.The "hr" tag in HTML is used for -
- New Line
- Horizontal Line
- Vertical Line
- 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?-
- disc, square, triangle
- polygon, triangle, circle
- disc, circle, square
- 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??-
- < ol type = "1" initial = "4">
- <ol type = "1" begin = "4">
- <ol type = "1" num = "4">
- <ol type = "1" start = 4 >
Option 4,type=circle,disc,square
12.An HTML program is saved by using the ____ extension.?-
- .hmtl
- .html
- .htm
- both b and c
Option 4 is correct
13.The tags in HTML are -?-
- case sensitive
- Lowercase
- case insensitive
- Uppercase
Option 3, is correct <body> and <BODY> are same
14.Which of the following is the root tag of the HTML document?
- <head>
- <title>
- <html>
- <body>
Option 3, is correct <html> is the root element
15.Which is the correct way to comment out something in HTML?
- Using ## and #
- Using <!-- and -->
- Using </-- and -/->
- Using<!-- and -!>
Option 2, is correct <!-->
16.Which HTML tag is used to display the power in expression, i.e., (a2 - b2)?
- <sub>
- <pow>
- <sup>
- <br>
Option 3, For superscript we use<sup>
17.HTML is the standard ____language for creating Web pages.?
- scripting
- programming
- markup
- low level
Option 3, HTML is a Markup Language.
18.Who invented HTML?
- Dave Raggett
- Tim Berners-Lee
- Denis Ritchie
- All of the above
Option 2, HTML is invented by Tim Berneer's Lee
19.HTML tags with no content are called _____.
- Container Tag
- Empty Tag
- Advanced Tag
- 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?.
- <strong>
- <bold>
- <b>
- <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?
- <strong>
- <bold>
- <b>
- <strike>
Option 1, Tags with extra importance is defined using <strong> Tag
22.Which HTML tag is used to define marked or highlighted text?
- <highlight>
- <bold>
- <mark>
- <highlighted>
Option 3, To highlight text we use <mark> Tag
23.Which is the correct HTML statement to display H20 in a paragraph?
- <p>H<sup>2</sup>O</p>
- <p>H<ins>2</ins>O</p>
- <p>H<below>2</below>O</p>
- <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?
- <p><del>Hello</del><ins>Hi!</ins></p>
- <p><strike>Hello</strike><ins>Hi!</ins></p>
- <p><cut>Hello</cut><ins>Hi!</ins></p>
- Both a and b
Option 4, is correct.
25.Which HTML tag is used to define a hyperlink?
- <a>
- <anchor>
- <link>
- <href>
Option 1, <a> is used to create hyperlinks.
26.Which is the correct syntax of <a> tag?
- <a src="url">link text</a>
- <a link="url">link text</a>
- <a href="url">link text</a>
- <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?
- To define title text
- To define reference of a document
- To define destination URL
- 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?
- <img src="url">
- <img src="url" alt="alternatetext">
- <img src="url" alt="alternatetext" />
- All of the above
Option 3, <img src="url" alt="alternatetext" />