table

table

University

9 Qs

quiz-placeholder

Similar activities

kuis jwd

kuis jwd

University

10 Qs

html5

html5

University

10 Qs

XII RPL 2

XII RPL 2

University

10 Qs

Web Development Revision (Table)

Web Development Revision (Table)

University

10 Qs

Table menggunakan Web

Table menggunakan Web

10th Grade - University

5 Qs

HTML Table

HTML Table

10th Grade - Professional Development

9 Qs

C++ Array Quick Review

C++ Array Quick Review

University

10 Qs

Tablas HTML

Tablas HTML

University

7 Qs

table

table

Assessment

Quiz

Computers

University

Hard

Created by

Karthika Ravichandran

Used 1+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

Knowledge: What is a table in HTML?
A. A container for data
B. A container for images
C. A container for links
D. A container for paragraphs

2.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

Media Image
Knowledge: What are rows and columns in a table?
A. Rows are horizontal and columns are vertical
B. Rows are vertical and columns are horizontal
C. Rows and columns are both horizontal
D. Rows and columns are both vertical

3.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

Media Image
Knowledge: What is the purpose of rowspan in a table?
A. To merge cells horizontally
B. To merge cells vertically
C. To split cells horizontally
D. To split cells vertically

4.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

Media Image
Knowledge: What is the purpose of colspan in a table?
A. To merge cells horizontally
B. To merge cells vertically
C. To split cells horizontally
D. To split cells vertically

5.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

Comprehension: How do you define the number of rows and columns in a table?
A. Using the <code><thead></code> element
B. Using the <code><tr></code> element
C. Using the <code><th></code> element
D. Using the <code><table></code> element

6.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

Comprehension: How do you specify the number of columns a cell should span using colspan?
A. <code>colspan="n"</code> where n is the number of columns
B. <code>rowspan="n"</code> where n is the number of columns
C. <code>colspan=n</code> where n is the number of columns
D. <code>rowspan=n</code> where n is the number of columns

7.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

Comprehension: How do you specify the number of rows a cell should span using rowspan?
A. <code>colspan="n"</code> where n is the number of rows
B. <code>rowspan="n"</code> where n is the number of rows
C. <code>colspan=n</code> where n is the number of rows
D. <code>rowspan=n</code> where n is the number of rows

8.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

Application: How do you create a table with a header row and three rows of data?
A. Use the <code><thead></code> element for the header row and <code><tr></code> element for the data rows
B. Use the <code><tr></code> element for both the header row and data rows
C. Use the <code><th></code> element for the header row and <code><td></code> element for the data rows
D. Use the <code><td></code> element for both the header row and data rows

9.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

Application: How do you merge two cells horizontally in a table?
A. <code><td colspan="2"></code>
B. <code><td rowspan="2"></code>
C. <code><th colspan="2"></code>
D. <code><th rowspan="2"></code>