Multiple choice technology web technology

Which method is used to create a new row in a table

  1. NewRow()

  2. Add()

  3. Read()

  4. ExecuteReader()

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

NewRow() creates a new DataRow with the same schema as its DataTable. Add() is for adding to DataRowCollection, not creating. Read() and ExecuteReader() are database-related, not for creating rows.