Multiple choice technology web technology

ADO Record set can hold multiples tables data.

  1. True

  2. False

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

False is correct because classic ADO Recordsets typically hold data from a single table or query result. A Recordset represents rows from one source. To work with multiple related tables, you would need hierarchical Recordsets (using parent-child relationships) or, more commonly in modern scenarios, a DataSet in ADO.NET which can contain multiple DataTables with relationships.