Multiple choice technology platforms and products

In SQLite3 database, Files (such as bitmaps or audio files) are usually stored within database tables.

  1. True

  2. False

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

In SQLite3 and Android best practices, large files like bitmaps or audio files are typically NOT stored directly within database tables as BLOBs. Instead, they're stored in the file system, and only the file path or URI is stored in the database. This approach is more efficient, avoids database bloating, and is easier to manage.