Multiple choice

_________ class is used to implement SQLiteDatabase in android

  1. SQLiteHelper

  2. SQLiteDatabase

  3. SQLiteOpenHelper

  4. SQLiteConnector

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

SQLiteOpenHelper is the helper class that manages database creation, version management, and upgrades. It provides onCreate() and onUpgrade() callback methods. The actual database instance is SQLiteDatabase, but SQLiteOpenHelper is the class you extend to implement database management.