Exam UiARD All QuestionsBrowse all questions from this exam
Question 5

A developer needs to extract data from "Sheet1" of the "Test.xls" file that contains 10,000 rows of data using the code shown in the following exhibit:

In addition, the developer configured the following properties of the Read Range activity:

Based on the exhibits, what is the output of the expression, OutputDataTable.Rows.Count and what values will be contained in the OutputDataTable?

    Correct Answer: A

    The Read Range activity is configured to read the range 'A1:B2' and the AddHeaders option is checked. This means the first row, A1 and B1, will be used as headers and not included in the data rows. Therefore, OutputDataTable.Rows.Count will be 1 because only the second row (A2 and B2) contains data. Consequently, the OutputDataTable will contain the values of cells A2 and B2.

Discussion
Engineer24Option: A

The correct answer is A. OutputDataTable.Rows.Count is equal to 1 Contains the Values of Cells A2 and B2 The firs Row is not counted beacuse is the Headers.

OnlineOption: A

Row count is 1, if I uncheck Add headers, then it is 2.

nosavotor

Could someone help me confirm if this is correct

nosavotor

Is this answer accurate friends

phileraeneOption: A

First excel row as header Second excel row as data

MirjalolOption: A

Answer = 'A', tested in uipath studio

MancheOption: A

The Answer is A

FonminccOption: A

It's A!!!!!!!!!!!!!!!!!!!!!!!

Engineer24Option: A

The correct answer is A. OutputDataTable.Rows.Count is equal to 1 Contains the Values from A2 and B2