________ objects are used to insert new rows into database tables
-
ContentValues
-
ContentValue
-
CursorFactory
-
None of above
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.