Home > Databases > Quizzes > SQLite Practice Test Questions
SQLite Practice Test Questions
Fast practice, instant feedback. Timer auto-submits when time’s up.
Avg score: 0% Most missed: “What does .backup ?”

SQLite is a database engine written in the C programming language. It is not a standalone app; rather, it is a library that software developers embed in their apps. As such, it belongs to the family of embedded databases.
SQLite vs MySQL: SQLite is a server-less database and is self-contained. This is also referred to as an embedded database which means the DB engine runs as a part of the app. On the other hand, MySQL requires a server to run. MySQL will require a client and server architecture to interact over a network.

SQLite Practice Test Questions
Time left 00:00
25 Questions

1. Which of the following is/are the data type(s) for the TEXT affinity?
2. What is TRUE about reducing the cost and complexity in SQLite?
3. What does .output stdout command do?
4. What is/are the syntax of SQLite EXPLAIN statement?
5. The SQLite database engine is ____. It is self-contained and no configuration is required.
6. Several programming languages support SQLite's API such as -
7. Because SQLite allows access to and update content in a concise manner rather than through lengthy and error-prone procedural queries, it reduces the application's ____.
8. What does the NULL storage class do?
9. What does .read filename command do?
10. What is the syntax of SQLite RELEASVE SAVEPOINT statement?
11. Does .dump ?table? command do?
12. How many types of SQLite commands are there?
13. What does .explain on|off command do?
14. In contrast with other database management systems like SQL Server or Oracle, SQLite is very small (less than ____ in size).
15. You can delete a whole table, a view of a table, or any other object within a database by using the ____ command.
16. ____ databases can be accessed simultaneously with SQLite in the same session.
17. What is/are the syntax of ROLLBACK statement?
18. What is the full form of DQL?
19. What is the syntax of CREATE INDEX statement?
20. ____ storage class(es) is/are all stored in the TEXT column.
21. What is the syntax of SQLite DELETE statement?
22. Which of the following is/are a/the SQLite Comparison Operator(s)?
23. Which of the following is an SQLite Arithmetic Operator?
24. Which of the following is the data type for the NONE affinity?
25. SQLite is a ____ database resource.