AND-401 Exam QuestionsBrowse all questions from this exam

AND-401 Exam - Question 80


Which of the following statements is correct about SQLite?

Show Answer
Correct Answer: C,D

SQLite is a lightweight database that can be embedded into applications. For Android specifically, the SQLite database can be created and accessed using the SQLiteOpenHelper class. This helper class provides a way to manage database creation and version management. The other options are incorrect: SQLite is not an object database (A), it does not follow the client-server model (B), and while data stored in SQLite can be shared between applications using ContentProvider, it is not a defining feature of SQLite itself (D).

Discussion

1 comment
Sign in to comment
MmadiOption: D
Dec 31, 2022

D. It can be accessed by other applications through ContentProvider.