Multiple choice technology platforms and products

________ objects are used to insert new rows into database tables

  1. ContentValues

  2. ContentValue

  3. CursorFactory

  4. None of above

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

ContentValues is a class used to store a set of values that a ContentResolver can process. When inserting new rows into database tables using SQLiteDatabase.insert(), you pass a ContentValues object containing the column names and values for the new row. This is the correct and standard way to insert data.