Multiple choice technology programming languages

Which object allows you to work with a subset of the data contained in a DataTable.

  1. DataRow

  2. DataColumn

  3. DataView

  4. DataSet

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

DataView provides a customizable, filtered view of a DataTable's contents. It allows sorting, filtering, and searching without modifying the underlying data. DataRow represents a single row, DataColumn represents a single column, and DataSet is a collection of tables. DataView is specifically designed for working with data subsets.