91
Which of the following sign is used for closing a tag in HTML?
A.
B.
C.
D.
Answer & Solution
In HTML, a closing
tag is indicated by a forward slash (/) before the tag name. For example, </p> closes a paragraph.
92
Which of the following tag is used to create a list of items with bullet point in HTML?
A.
B.
C.
D.
Answer & Solution
The <ul> tag is used to create an unordered list, which displays list items with
bullet points. The <ol> tag is used for ordered (numbered) lists.
93
Which of the following tag is used to make a ‘line-break’ in HTML?
A.
B.
C.
D.
Answer & Solution
The <br> tag in HTML is used to insert a line break, forcing the content that
follows to start on a new line.
94
Which of the following tag is used for inserting the largest heading in HTML Document?
A.
B.
C.
D.
Answer & Solution
The <h1> tag is used to define the largest heading in HTML, where <h1> represents the highest level of heading, and <h6> is the smallest.
95
The correct sequence of HTML tags for starting a webpage is -
A.
B.
C.
D.
Answer & Solution
The correct sequence
for a basic HTML page structure starts with the <html> tag, followed by the <head> tag, the <title>
tag inside the <head>, and then the <body> tag, where the visible content of the page is
placed.
96
HTML stands for -
A.
B.
C.
D.
Answer & Solution
HTML stands for HyperText Markup Language. It is the standard language used to create web pages and web applications. HTML uses a system of tags to structure content.
97
Which of the following tag is used for making the text ‘bold’ in HTML?
A.
B.
C.
D.
Answer & Solution
The
<b> tag in HTML is used to make text bold. However,
the <strong> tag is more semantically appropriate for bold
text that has strong emphasis.
