A developer created a data table called “DT” using the Build Data Table activity as shown in the exhibit.
What is the result of the expression, “DT.Rows(1)(1).ToString”?
A developer created a data table called “DT” using the Build Data Table activity as shown in the exhibit.
What is the result of the expression, “DT.Rows(1)(1).ToString”?
The expression “DT.Rows(1)(1).ToString” refers to the value in the second row and second column of the data table. In the data table, the second row corresponds to the entry for 'John' and the second column corresponds to the 'Age' column. Therefore, the value in the second row and second column is 32.
Tested in Studio !