FC0-U61 · Question #384
Which of the following does a NoSQL database use to organize data?
The correct answer is C. Keys/values. A NoSQL database is a type of database that does not use tables, rows, and columns to organize data. Instead, it uses keys and values to store data in a flexible and scalable way. A key is a unique identifier for a piece of data, and a value is the data itself. For example: { "na
Question
Which of the following does a NoSQL database use to organize data?
Options
- APrimary keys
- BSchemas
- CKeys/values
- DTables
How the community answered
(35 responses)- A9% (3)
- B3% (1)
- C89% (31)
Explanation
A NoSQL database is a type of database that does not use tables, rows, and columns to organize data. Instead, it uses keys and values to store data in a flexible and scalable way. A key is a unique identifier for a piece of data, and a value is the data itself. For example: { "name": "Alice", "age": 25, "city": "New York" } In this example, name, age, and city are keys, and Alice, 25, and New York are values.
Topics
Community Discussion
No community discussion yet for this question.