.NET Dataset objects - Answers to .NET Dataset objects interview questions

DataSet object can not directly interact with Database. A DataAdapter object needs to be created to refer to the connection that is created....
The DataSet class exists in the System.Data namespace. The Classes contained in the DataSet class are:.....
The modified data needs to be sent back to the database in order to save it...
Dataset.clone() duplicates (only) the structure of a dataset, without duplicating the data....
Datareader fetches one row at a time from the datasource. DataSet fetches all data from the datasource at a time to its memory area.....