78% found this document useful (9 votes)
15K views4 pages

List and Table in HTML CLASS 7

1. The document discusses HTML lists and tables. It provides multiple choice and true/false questions about HTML tags such as <ul>, <ol>, <table>, <tr>, and <td>. 2. The questions also ask students to define terms like unordered list, ordered list, and cell spacing. Students are asked to explain the <table> tag and compare ordered and unordered lists. 3. The document concludes by providing incomplete code examples for a table and list and asking students to find and fix the errors.

Uploaded by

vaishnavi arora
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
78% found this document useful (9 votes)
15K views4 pages

List and Table in HTML CLASS 7

1. The document discusses HTML lists and tables. It provides multiple choice and true/false questions about HTML tags such as <ul>, <ol>, <table>, <tr>, and <td>. 2. The questions also ask students to define terms like unordered list, ordered list, and cell spacing. Students are asked to explain the <table> tag and compare ordered and unordered lists. 3. The document concludes by providing incomplete code examples for a table and list and asking students to find and fix the errors.

Uploaded by

vaishnavi arora
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 4

DELHI PUBLIC SCHOOL, GOMTI NAGAR EXTN.

, LUCKNOW
CLASS:VII
SUBJECT: COMPUTER SCIENCE
TOPIC: LIST AND TABLES IN HTML5

Student Name: _____________________ Roll No.: _______Sec:_______ Date: _____________________


Q1)Multiple choice questions:
i) By which tag, an unordered list is represented?

A. <u>
B. <I>
C. <ul>
D. <ol>

ii) What is the default item marker in unordered lists of HTML?

A. disc

B. Marker

C. Circle

D. None of the above

iii)  HTML tag defines the

A. Ordered list

B. Descriptive list

C. Unordered list

D. Description list

iv) In HTML tables table row is defined by

A. <th> tag

B. <tr> tag

C. <td> tag

D. ,row> tag

Q2)Answer the following questions in words:


1. An ______________________ is the collection of related items that have no special order.
2. The ________________tag allows us to arrange the data into rows and columns.
3. _________________________is used to display the title for the table on the top.
4. The space between the cells is called as _________________.

Q2 State whether the following statements are True or False:-


(1) <UL> tag is used to define the unordered list.
(2) Disc, Circle and Square are the attribute types of the ordered list. 
(3) An ordered list is the collection of related items that are numbered. 
(4) Nested list means that one list can be placed inside the other list. 
(5) Cell spacing represents the distance between cell borders and the content within a cell. 
Q3) Answer the following questions:  
Q1)What is a Table tag? Explain its attributes?
Ans:-
______________________________________________________________________________________
______________________________________________________________________________________
______________________________________________________________________________________
______________________________________________________________________________________
______________________________________________________________________________________
______________________________________________________________________________________
______________________________________________________________________________________
______________________________________________________________________________________
______________________________________________________________________________________
______________________________________________________________________________________
______________________________________________________________________________________
______________________________________________________________________________________
____________

Q2) State the difference between Ordered list and Unordered list along with its attribute.
 Ans :- 
______________________________________________________________________________________
______________________________________________________________________________________
______________________________________________________________________________________
______________________________________________________________________________________
______________________________________________________________________________________
______________________________________________________________________________________
______________________________________________________________________________________
______________________________________________________________________________________
______________________________________________________________________________________
______________________________________________________________________________________
______________________________________________________________________________________
______________________________________________________________________________________
___________
Q3) State the difference between Cell Padding and Cell Spacing.
Ans :- _________________________________________________________________________________
______________________________________________________________________________________
______________________________________________________________________________________
______________________________________________________________________________________
______________________________________________________________________________________
______________________________________________________________________________________
______________________________________________________________________________________
______________________________________________________________________________________
______________________________________________________________________________________
______________________________________________________________________________________
______________________________________________________________________________________
______________________________________________________________________________________
________________

Q4) Name the CSS properties used with <TABLE> tag.


______________________________________________________________________________________
______________________________________________________________________________________
______________________________________________________________________________________
______________________________________________________________________________________
______________________________________________________________________________________
______________________________________________________________________________________
______________________________________________________________________________________
______________________________________________________________________________________
______________________________________________________________________________________
______________________________________________________________________________________
__________

Q5)Find the errors in the given codes and rewrite the code:

a) <table>
    <th>Company</th>
    <th>Contact</th>
    <th>Country</th>
  </tr>
  <tr>
    <td>Alfreds Futterkiste</td>
    <td>Maria Anders</td>
    <td>Germany</td>
  </tr>
  <tr>
    <td>Centro comercial Moctezuma</td>
    <td>Francisco Change
    <td>Mexico</td>
</table>
b)

<table>
  <tr>
    <th colspan=Name</th>
    <th>Age</th>
  </tr>
  <tr>
    <td>Jill</td>
    <td>Smith</td>
    <td>43</td>
  </tr>

</table>
c)
  <li>Coffee</li>
  <li>Tea</li>
  <li>Milk
</ol>

You might also like