86.4k views
4 votes
12) NoSQL databases require a company to:

a. Model a business process prior to building the database and then not allow changes to the database
b. Specifically define the data type for each attribute in the NoSQL table
c. Store data in rows and columns
d. All of the above are correct
e. None of the above are correct

1 Answer

4 votes

Final answer:

NoSQL databases do not require a company to model a business process or specifically define data types. They do not store data in rows and columns.

Step-by-step explanation:

The correct answer to this question is e. None of the above are correct. NoSQL databases, as the name implies, do not use structured query language (SQL) for data retrieval and manipulation. This means that they do not require a company to model a business process prior to building the database and not allow changes to the database.

Furthermore, NoSQL databases do not specifically define the data type for each attribute in the table. Instead, they are designed to handle unstructured and semi-structured data, where the schema can be flexible.

Lastly, NoSQL databases do not store data in rows and columns like traditional relational databases, which use SQL. Instead, they use various data models, such as key-value, document, columnar, or graph.

User Joseph Zabinski
by
7.9k points