In a relational database, which of the following best describes a tuple?
Think about what a row in a table represents.
A tuple is a single row in a relation (table) that represents one record or data item.
Which statement correctly defines an attribute in the context of a relation?
Attributes describe the characteristics of data stored in a table.
Attributes are the columns in a relation that define the type of data stored.
Given a relation (table) with 5 attributes and 100 tuples, what is the total number of attribute values stored in the relation?
Multiply the number of tuples by the number of attributes.
Each tuple has 5 attribute values, so total values = 5 * 100 = 500.
Which option correctly contrasts a relation and a tuple in a database?
Think about the whole table versus one row.
A relation is the entire table (set of tuples), while a tuple is one row in that table.
In a relation, why must each tuple be unique, and what would happen if duplicate tuples were allowed?
Consider how databases identify and retrieve records.
Uniqueness of tuples ensures each record is distinct, preventing confusion and errors in data retrieval.