Deal of The Day! Hurry Up, Grab the Special Discount - Save 25% - Ends In 00:00:00 Coupon code: SAVE25
Welcome to Pass4Success

- Free Preparation Discussions

UiPath-ADPv1 Exam - Topic 4 Question 54 Discussion

Actual exam question for UiPath's UiPath-ADPv1 exam
Question #: 54
Topic #: 4
[All UiPath-ADPv1 Questions]

The following table is stored in a variable called "dt".

What will the value of the qty variable be after executing the Assign activity?

Show Suggested Answer Hide Answer
Suggested Answer: C

The value of the qty variable will be 80 after executing the Assign activity. This is because the expression in the Assign activity is using the LINQ methods AsEnumerable, SkipWhile, and Item to access the data in the dt variable. The dt variable is a DataTable that contains the following data:

Item

Quantity

apple

5

banana

10

mango

20

orange

80

grape

40

The AsEnumerable method converts the DataTable into an Enumerable collection of DataRow objects. The SkipWhile method skips the elements of the collection until the condition is false. The condition is a lambda expression that checks if the value of the Item column is equal to ''mango''. The (0) indexer returns the first element of the collection after skipping. The Item method accesses the value of the Quantity column of the DataRow. The ToString method converts the value into a string. Therefore, the expression will skip the first three rows of the DataTable and return the value of the Quantity column of the fourth row, which is 80.Reference: [DataTable.AsEnumerable Method], [Enumerable.SkipWhile Method], [DataRow.Item Property]


Contribute your Thoughts:

0/2000 characters
Sena
17 days ago
I feel like the answer could be 5, but I might be mixing it up with another example we practiced.
upvoted 0 times
...
Teresita
22 days ago
I remember a similar question where we had to extract values from a table, but I can't recall if it was based on a specific row or column.
upvoted 0 times
...
Maybelle
27 days ago
I think the qty variable will be 10, but I'm not completely sure if I remember the correct logic for the Assign activity.
upvoted 0 times
...

Save Cancel