ADO Record set can hold multiples tables data.
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.