Multiple choice

SQLite database needs _________ connection.

  1. JDBC

  2. ODBC

  3. network

  4. no

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

SQLite in Android does NOT use JDBC, ODBC, or any network connection. Android provides its own SQLite API through SQLiteDatabase and SQLiteOpenHelper classes that directly interact with the database file. This is different from how you'd access SQLite in a Java desktop application using JDBC.