Multiple choice technology programming languages

You want to cache the data for your application and do some extensive processing, which object will be best suited for your application

  1. DataReader

  2. Linq

  3. DataSet

  4. All of these

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

A DataSet represents an in-memory cache of data. It is disconnected from the database, allowing developers to perform extensive data manipulation, filtering, and caching. A DataReader is read-only and requires a continuous connection, while LINQ is a query syntax rather than a storage object.