Multiple choice technology testing

Using the following DataTable value Property, what does the number indicate? X= Datatable.value (“Column1”,1)

  1. That you want the data from the first row in the table

  2. That you want the data from the first column in the table

  3. To get the data from the data sheet

  4. To access the data from the data sheet with the index Value ‘1’

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

The number '1' in DataTable.Value("Column1", 1) specifies the row index in the data sheet. The first parameter is the column name, the second parameter is the row number (1-based index).