Scenario: You are developing a Windows Forms application that needs to display and edit data from a database. Which ADO.NET component would you use to store and manage the data in a tabular format?

  • DataSet
  • SqlConnection
  • SqlDataAdapter
  • SqlDataReader
The DataSet class in ADO.NET is designed to store and manage data in a tabular format, making it suitable for use in Windows Forms applications where data needs to be displayed and edited. It provides a disconnected architecture, allowing data to be manipulated independently of the database.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *