Home > Databases > Quizzes > JavaScript IndexedDB
JavaScript IndexedDB
Fast practice, instant feedback. Timer auto-submits when time’s up.
Avg score: 64% Most missed: “Does IndexedDB use Structured Query Language?”

The Indexed Database API is a JavaScript application programming interface provided by web browsers for managing a NoSQL database of JSON objects. It is a standard maintained by the World Wide Web Consortium. As an alternative to the Web storage standard, IndexedDB can provide more storage capacity. (Source: Wikipedia)

JavaScript IndexedDB
Time left 00:00
23 Questions

1. We use ____ to connect with IndexedDB.
2. To destroy the object store, use the ____ method.
3. During the commit state, new requests can be made? Yes or No
4. IndexedDB's data is stored in ____.
5. After a transaction is committed or aborted then it is in the ____ state.
6. The ____ method returns all the objects in the object store.
7. To destroy the object store, use the ____ method.
8. IndexedDB is ____.
9. To close a database, we need to use which of the following function?
10. Which of the following method in IndexedDB can be employed to build a database?
11. Once all the requests associated with a transaction are completed then it attempts to ____.
12. The connection is not terminated until all transactions have been completed.
13. During the commit state, new requests can be made? Yes or No
14. Does IndexedDB use Structured Query Language?
15. IndexedDB's data is stored in ____.
16. How many modes are there of transactions?
17. Which of the following function can be employed to create an object store?
18. The ____ method returns all the objects in the object store.
19. The connection is not terminated until all transactions have been completed.
20. IndexedDB is a ____ database.
21. After a transaction is committed or aborted then it is in the ____ state.
22. An ____ is a type of object store that is used to seek up entries in another object store known as the referenced object store.
23. A database may have a single object-store.