Multiple choice

_______ Class has methods to access and manage Content Provider data.

  1. ContentProvider

  2. ContentResolver

  3. AccessProvider

  4. None of above

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

ContentResolver is the client-side class that applications use to communicate with Content Providers. You call getContentResolver() to get an instance, then use its query(), insert(), update(), and delete() methods. ContentProvider is the server-side class you implement to expose data.