Welcome to ExamTopics
ExamTopics Logo
- Expert Verified, Online, Free.
exam questions

Exam UiADAv1 All Questions

View all questions & answers for the UiADAv1 exam

Exam UiADAv1 topic 1 question 101 discussion

Actual exam question from UiPath 's UiADAv1
Question #: 101
Topic #: 1
[All UiADAv1 Questions]

A developer has created a data table. "dt_Users", as shown in the following exhibit:

After scraping the data from a web application the developer wants to assign each row in the "dt_Users" variable to a Dictionary<string, string> variable, "DictUsers". In addition, the developer wants to assign the user IDs to the keys and the usernames to the values inside a For Each Row activity.

How should the Assign activity be configured?

  • A. DictUsers(CurrentRow(1).ToString) = CurrentRow(0).ToString
  • B. CurrentRow(1).ToString = DictUsers(CurrentRow(0).ToString)
  • C. DictUsers(CurrentRow(0)) = DictUsers(CurrentRow(1).ToString)
  • D. DictUsers(CunrentRow(1).ToString) = DictUsers(CurrentRow(0).ToString)
Show Suggested Answer Hide Answer
Suggested Answer: A 🗳️

Comments

Chosen Answer:
This is a voting comment (?) , you can switch to a simple comment.
Switch to a voting comment New
AutomationDumps
1 month, 4 weeks ago
Yes Correct CurrentRow(1).ToString refers to the user ID (second column), which will be the key. CurrentRow(0).ToString refers to the username (first column), which will be the value.
upvoted 1 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
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.

SaveCancel
Loading ...