Database Fundamentals — Question 126
You need to store the contact information for each student in your school database.
You should store each student's information in a:
Answer options
- A. Stored procedure
- B. Function
- C. Row
- D. Variable
Correct answer: C
Explanation
The correct answer is C, as storing each student's information in a row allows for organized and structured data management within a database. Options A and B are not suitable for storing data directly, as they are used for executing procedures and returning values, respectively. Option D is also incorrect, as a variable is not a suitable storage mechanism for structured data in a database context.