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

The following table is stored in a variable called "dt".What will the value of the qty variable be after executing the Assign activity?
C) 80
A) 5
B) 10
D) null

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
Cherelle
2 hours ago
I’m a bit confused about how the indexing works in this case. Is it zero-based or one-based?
upvoted 0 times
...
Jacquline
5 days ago
I remember a similar question where we had to extract values from a data table. I think it was about summing up quantities.
upvoted 0 times
...
Mi
10 days ago
I think the qty variable should be 10, but I'm not entirely sure how the Assign activity works with the table.
upvoted 0 times
...
Gerald
16 days ago
I’m leaning towards null as the answer, but I need to double-check how the Assign activity works with the data table.
upvoted 0 times
...
Sena
2 months 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
2 months 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
2 months 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