Multiple choice technology platforms and products

If you don't need to share data amongst multiple applications, then you can use a database directly using -

  1. Content Provider

  2. Intent

  3. SQLite Database

  4. None of above

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

When data doesn't need to be shared between applications, you can use SQLite database directly without implementing a ContentProvider. ContentProviders add overhead and are only necessary for cross-app data sharing.