Imagine a table like a classroom seating chart. Which part of the table corresponds to the students sitting in a single row?
Think about how students sit side by side in a row.
A row in a table is like a line of students sitting side by side. Each row holds multiple cells (students), arranged horizontally.
Given a table with 5 rows and 4 columns, how many cells does the table contain in total?
Multiply the number of rows by the number of columns.
The total number of cells in a table is rows multiplied by columns: 5 ร 4 = 20.
Look at the table diagram below:
Table:
| Name | Age | City | --+--------+-----+--------+ 1 | Alice | 30 | Paris | 2 | Bob | 25 | London | 3 | Carol | 27 | Berlin |
Which of the following is the second column?
Count columns from left to right starting after the row number.
The second column after the row number is "Age".
Which statement correctly describes the difference between rows and columns in a table?
Think about how you read a table from left to right and top to bottom.
Rows run left to right (horizontally), columns run top to bottom (vertically).
You have a table with 48 cells. You know it has 6 columns. How many rows does it have?
Divide total cells by number of columns to find rows.
Rows = Total cells รท Columns = 48 รท 6 = 8 rows.