Which of the following statements is correct about SQLite?
Which of the following statements is correct about SQLite?
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).
D. It can be accessed by other applications through ContentProvider.