61

Which of the following is used to group multiple form elements in HTML?

A.
B.
C.
D.
Answer & Solution
Solution:

The <fieldset> tag is used to group related form elements, and it is typically used with the <legend> tag to provide a description.

62

What does the <title> tag define in an HTML document?

A.
B.
C.
D.
Answer & Solution
Solution:

The <title> tag defines the title of the webpage, which is displayed on the browser's title bar or tab.

63

Which of the following tag is used to create a drop-down list with multiple options?

A.
B.
C.
D.
Answer & Solution
Solution:

The <select> tag is used to create a dropdown list in HTML, where each option within the dropdown is defined using the <option> tag.

64

Which of the following is the root element of the HTML document?

A.
B.
C.
D.
Answer & Solution
Solution:

The <html> tag is the root element that contains all other elements in an HTML document.

65

The tags in HTML are recommended to write-

A.
B.
C.
D.
Answer & Solution
Solution:

It is recommended to write HTML tags in lowercase for consistency and readability, although HTML is not case-sensitive.

66

A program in HTML can be read by -

A.
B.
C.
D.
Answer & Solution
Solution:

HTML documents are read and rendered by web browsers such as Chrome, Firefox, or Safari.

67

Which of the following extension is used to save an HTML program file?

A.
B.
C.
D.
Answer & Solution
Solution:

HTML files are saved with the .html extension.

68

Which of the following tag is used to define the paragraph tag in HTML?

Answer & Solution
Solution:

The <p> tag is used to define a paragraph in HTML.

69

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

A.
B.
C.
D.
Answer & Solution
Solution:

The style attribute is used to define inline CSS styles directly within an HTML element.

70

Which of the following is the appropriate way to start an ordered list with the count of numeric value 6?

A.
B.
C.
D.
Answer & Solution
Solution:

To start an ordered list with a number other than 1, use the start attribute. Example: <ol start="6">.