Multiple choice technology web technology

What are basic methods of Data adapter

  1. Fill

  2. Read

  3. Clear

  4. FillSchema

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

DataAdapter's core methods are Fill (executes query and populates DataSet) and FillSchema (retrieves schema info without data). 'Read' is not a DataAdapter method (it's for DataReader). 'Clear' is for DataTable/DataView clearing.