UiPath-ARDv1 UiPath Advanced RPA Developer v1.0 Exam (UiARD)

Loading demo links...

Showing 13–15 of 15 questions

Question 13

You want to build a Dispatcher process to populate an Orchestrator Queue for parallel processing on multiple robots. Which activity should you use to add a queue item for each work item?

Options are :

Select an option, then click Submit answer.

  • Add Queue Item

  • Add Transaction Item

  • Get Transaction Item


Question 14

In the UiPath Robotic Enterprise Framework template, to enable the retry mechanism without using Queues, what should the value of MaxRetryNumber be set to?

Options are :

Select an option, then click Submit answer.

  • 0

  • Any value greater than 0

  • Any value greater than 2


Question 15

A developer automates a project for Finance Team. As the first step, robot needs to capture ticket numbers from a Sharepoint site and then search them in SalesForce application. However, on Sharepoint all ticket numbers contain 7 characters and start with zeros e.g. 0000728, 0011430, 0003219. While in SalesForce, zeros in front are removed e.g. 728, 11430, 3219.

How can robot overcome this inconsistency?

Select an option, then click Submit answer.

  • newTicketNumber = oldTicketNumber.Substring(3)

  • newTicketNumber = oldTicketNumber.Trim("0"c)

  • newTicketNumber = oldTicketNumber.TrimStart("0"c)

  • newTicketNumber = oldTicketNumber.Replace("0","")