Android Application Development (AND-401) — Question 79
Which of the following statements is correct about SQLite?
Answer options
- A. It is an object database.
- B. It is client-server format.
- C. It is possible to create and access a database by using SQLOpenHelper.
- D. It can be accessed by other applications through ContentProvider.
Correct answer: D
Explanation
Option D is correct because SQLite databases can indeed be accessed by other applications using ContentProvider. Options A and B are incorrect as SQLite is a relational database, not an object database, and it does not operate in a client-server model. Option C is misleading as SQLOpenHelper is a helper class but does not encompass the full capabilities of SQLite database interactions.