List and Tables in HTML5 ch-4 class 8th

A. Tick the correct answers.
1. Which type of a list is called and unordered list?
Ans- Bulleted list
2. which of the following list markers will be displayed when a list is created using< ul type="circle">?
Ans-°
3.Which is the correct method to receive a list?
Ans- <ol reversed>
4. An element which is not a part of the description list is.
Ans-<td>
5. Which of the following is the tag to set the title of a table?
Ans-<caption>

B. Fill in the blanks.
1. Use the <TR > tag to define table row.
2. The space between two cell in a table is adjusted with the help of <cellspecing> tag.
3. When a list item contain another entire list it is known as a nested list.
4. The start attribute of an ordered list is used to decide the start value of the first item in an ordered list.
5. Cellpadding property of a table set the distance between the border of adjacent cell.

C. Write true and false statements.
1. An unordered list is enclosed between the <u> and </u> tag.false
2. You cannot define the height and width of the table.false
3. The <ol type "a"will create an ordered list numbered with a,b,c true
4. You can add various other element inside the table elements.true
5.<li>tag is used to form a table false

D. Answer the following questions.
1. Explain the tag and their attributes required to build the description list.
Ans- Will not come in your exam.(note)
2. Write the difference between order and unordered list.
Ans- Like the names imply, the only difference between an ordered list and an unordered list, is that an ordered list will have its items ordered by number, whereas unordered lists will have just bullet points. Making your own unordered list is straightforward.
3. Describe any four of the basic tag required to create a table.
Ans- HTML <table> tag. When writing in HTML, the <table> tag is a block element used to create a table. It is useful when you want to represent data using rows and columns. The basic elements that make up a table include <th>, <td>, and <tr>.
4. What is a nested list? Explain with the help of an example.
Ans-Nesting Lists is the process of putting each item within a list (i.e. An individual list item is a list itself). If a list A is the list item of another list B, then list A would be called a nested list. In HTML, to implement nested lists, the code to be used is as follows: <ul> <li>Item A</li>
5. Describe the tags required to create an ordered list.
Ans- The <ol> tag defines an ordered list. An ordered list can be numerical or alphabetical. The <li> tag is used to define each list item.

Comments

Post a Comment