What are the fundamental objects in ADO.NET?
-
Data Reader
-
Data Table
-
Dataset
-
Data Row
A,C
Correct answer
Explanation
ADO.NET's fundamental objects are DataReader (connected, forward-only read) and Dataset (disconnected, in-memory cache). DataAdapter and DataRelation are supporting objects, while DataTable and DataRow are Dataset contents.