table

table

University

9 Qs

quiz-placeholder

Similar activities

Python - Functions

Python - Functions

University

10 Qs

Creating tables in HTML

Creating tables in HTML

University

10 Qs

QUIZ 2 HTML

QUIZ 2 HTML

University

10 Qs

Démo 2

Démo 2

University

10 Qs

Html/Css Quiz Day 1

Html/Css Quiz Day 1

University

10 Qs

Texto en Boostrap

Texto en Boostrap

University

10 Qs

HTML 02

HTML 02

University

10 Qs

2025 python class first quiz

2025 python class first quiz

9th Grade - University

10 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>