Chapter 11: HTML - Formatting text Creating Tables List and Links — Online MCQ Test
COMPUTER APPLICATIONS · CLASS 11th · Tamil Nadu State Board
Practice Chapter 11: HTML - Formatting text Creating Tables List and Links with a free chapter-wise online MCQ test.
This chapter covers: This chapter covers text formatting tags ordered and unordered lists image embedding table layouts and hyperlinks. Students design structured interactive web documents using standa....
AI-generated questions from basic to board-exam level, with instant results and explanations.
Chapter 11: HTML - Formatting text Creating Tables List and Links — Important Questions & Answers
Which tag is used to create an unordered list in HTML?
- A. <ol>
- B. <ul>
- C. <li>
- D. <dl>
Answer: B. <ul>
The <ul> tag defines an unordered (bulleted) list in HTML.
The <ul> tag defines an unordered (bulleted) list in HTML.
Which HTML tag is used for creating a hyperlink?
- A. <link>
- B. <src>
- C. <a>
- D. <href>
Answer: C. <a>
The <a> (anchor) tag is used to define a hyperlink, using the href attribute.
The <a> (anchor) tag is used to define a hyperlink, using the href attribute.
Which attribute is used with the <img> tag to specify the image path?
- A. link
- B. href
- C. src
- D. alt
Answer: C. src
The 'src' (source) attribute specifies the URL or path of the image file.
The 'src' (source) attribute specifies the URL or path of the image file.
Which of the following is NOT a valid table-related tag?
- A. <tr>
- B. <td>
- C. <th>
- D. <tl>
Answer: D. <tl>
<tl> is not a recognized HTML tag for tables; standard ones are table, tr, td, th.
<tl> is not a recognized HTML tag for tables; standard ones are table, tr, td, th.
Which attribute order is technically correct when writing an image tag with a source and alternate text?
- A. <img src='image.jpg' alt='Description'>
- B. <img alt='Description' src='image.jpg'>
- C. Both A and B are syntactically valid
- D. None of the above
Answer: C. Both A and B are syntactically valid
HTML attributes are unordered; as long as they are within the tag, the order does not affect the function.
HTML attributes are unordered; as long as they are within the tag, the order does not affect the function.