Name the data format for SQLite database for data storage?
-
Java Object
-
Relational database file
-
Serialized
-
dbms file
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.