Here are all the actual test exam dumps for IT exams. Most people prepare for the actual exams with our test dumps to pass their exams. So it's critical to choose and actual test pdf to succeed.

Exam UiPath-ADPv1 Topic 1 Question 125 Discussion

Actual exam question for UiPath's UiPath-ADPv1 exam
Question #: 125
Topic #: 1
Data from an Excel file is read into a data table named " dtEmployee " , as displayed in the following graphic:

A developer needs to filter the data table to obtain all rows representing employees from the Finance and IT departments with a Salary under 30,000. Which expression yields the desired outcomes?

Suggested Answer: D Vote an answer

The requirement is to return every row whose Department is either ' IT ' or ' Finance ' AND whose Salary is under 30000. Because AND binds tighter than OR, the OR condition on Department must be wrapped in parentheses so it is evaluated as a single unit before being combined with the Salary condition: dtEmployee.
Select( " ([Department]= ' IT ' OR [Department]= ' Finance ' ) AND [Salary] < 30000 " ). Option A incorrectly ANDs two mutually exclusive Department values, which can never both be true for the same row, so it returns no rows at all. Option B ORs every condition together, so it also returns any row with Salary under 30000 regardless of department. Option C omits the parentheses, so due to operator precedence it is read as [Department]= ' IT ' OR ([Department]= ' Finance ' AND [Salary] < 30000), which wrongly returns every IT employee regardless of salary.

by Harriet at Sep 23, 2026, 01:54 AM

Comments

Chosen Answer:
This is a voting comment (?) , you can switch to a simple comment.
Switch to a voting comment New
Nick name: Submit Cancel
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.