A developer extracts data about employees from an Excel workbook. The developer uses the following expression to filter the extracted datatable.
extractedDataTable.Select("[Age]>=21 AND ([Education]='Master' OR [Salary]>100000) AND [Education]='Bachelor'")
How many rows will be returned as the result of the filtering?
Please find below the worksheet with data.

The expression[Education]='Master' OR [Salary]>100000would return all rows except for 4 and 9.
Next,[Age]>=21would also eliminate rows 8 and 10.
Out of the remaining rows, only row 3 has a Bachelor degree, so[Education]='Bachelor'would leave only that 1 row.
UiPath forum
Exam Topic:Describe how to initialize variables such as lists and datatables, and how to filter datatables
Ciara
17 days agoArmando
22 days agoShantay
27 days ago