The database model that uses tables with columns and rows is called
The correct answer is: B
Explanation
The database model that uses tables with columns and rows is called a "relational database."
In a relational database, data is organized into tables, where each table represents a specific entity or concept. The columns of the table represent attributes or properties of the entity, and each row contains a set of values corresponding to those attributes. The relationships between tables are established through keys, primarily primary keys and foreign keys.
For example, a table that stores customer data might have columns for customer name, address, phone number, and email address. Each row in the table would represent a single customer.
Relational databases are widely used for managing structured data, and they provide a flexible and efficient way to store, retrieve, and manipulate data. The relational model has become one of the most dominant and popular approaches for organizing and managing data in various applications and industries.