Which of the following is an appropriate use case for using a NoSQL database over a SQL database?
- Financial transaction processing.
- Storing structured tabular data.
- Real-time analytics on large datasets.
- Content management system (CMS).
An appropriate use case for using a NoSQL database over a SQL database is real-time analytics on large datasets. NoSQL databases are often better suited for handling unstructured or semi-structured data at scale, making them a good fit for analytics. The other options are typically better handled by SQL databases.
Loading...
Related Quiz
- How can you send JSON data as a response using the http module in Node.js?
- How can the design of the Event Loop and Non-Blocking I/O lead to potential pitfalls in application behavior, such as callback hell or race conditions?
- You are developing a suite of unit tests for a service that interacts with an external API. How would you employ mocking and stubbing to ensure the tests are isolated and reliable?
- What is the significance of a returned inner function having access to the outer function's variables even after the outer function has executed?
- How does Content Security Policy (CSP) help in preventing XSS attacks, and what are its limitations?