Multiple choice technology web technology Which method is used to create a new row in a table NewRow() Add() Read() 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.