Final answer:
The actual data being added to a database table are listed in the VALUES clause of an INSERT statement.
Step-by-step explanation:
When new rows are being added to a table, the actual data being added are listed in the VALUES clause. When you want to insert data into a database table, you typically use an INSERT statement, which has this basic structure:
INSERT INTO table_name (column1, column2, column3, ...)
VALUES (value1, value2, value3, ...);
The column names after INSERT INTO table_name specify which columns you want to fill with data, and the VALUES clause contains the actual data for these columns. Each group of values enclosed in parentheses corresponds to a new row being inserted into the table.