Multiple choice technology

Name the data format for SQLite database for data storage?

  1. Java Object

  2. Relational database file

  3. Serialized

  4. dbms file

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

The correct answer is B because SQLite databases are stored as a single relational database file on disk. This is SQLite's defining characteristic - it's a serverless, zero-configuration database that stores the entire database (tables, indexes, data) in one file. Option A is incorrect because SQLite doesn't store Java objects directly. Option C is wrong because while serialization is used internally, the external format is a database file. Option D is incorrect because 'dbms file' is not a standard term.