SQLite database needs _________ connection.
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.