Difficulty: Easy
Correct Answer: row of a table.
Explanation:
Introduction / Context:
Terminology bridges theory and practice. The term tuple is standard in relational theory, while many tools say row or record.
Given Data / Assumptions:
Concept / Approach:
A tuple is a single record in the relation, represented as a row with one value per attribute.
Step-by-Step Solution:
Verification / Alternative check:
SQL statements like insert into table values (...) operate on tuples, i.e., rows.
Why Other Options Are Wrong:
Common Pitfalls:
Using record and field inconsistently; remember tuple equals row and attribute equals column.
Final Answer:
row of a table.
Discussion & Comments