Complete the code to identify the NoSQL database type that stores data as JSON-like documents.
The NoSQL database type that stores data as documents is called a [1] database.
A document database stores data as JSON-like documents, making it easy to store and query complex data.
Complete the code to name the NoSQL database type that stores data as pairs of keys and values.
A [1] database stores data as simple key and value pairs.
Key-value databases store data as pairs, where each key maps to a value, like a dictionary.
Fix the error in the statement about NoSQL database types.
A [1] database organizes data in tables with rows and columns, similar to relational databases.
Column databases store data in columns and rows but are different from relational databases by focusing on columns for fast queries.
Fill both blanks to describe the NoSQL database type that stores data as nodes and edges.
A [1] database stores data as [2] and edges to represent relationships.
Graph databases store data as nodes (entities) and edges (relationships) to model complex connections.
Fill all three blanks to complete the description of NoSQL database types and their data structures.
The [1] database stores data as [2], the [3] database stores data as key-value pairs.
Document databases store data as documents, graph databases use nodes and edges, and key-value databases store simple key-value pairs.