UiPath Advanced RPA Developer (UiARD) — Question 79
A developer creates a Performer process using the Robotic Enterprise (RE) Framework template in UiPath Studio version 2021.10. The process is published to an Orchestrator folder called FolderA and a job is created in Orchestrator from the package. The value of the "OrchestratorQueueName" setting in Config.xlsx is TestQueue and the value of “OrchestratorQueueFolder" is FolderA. In Orchestrator’s FolderA, the defined queues are: QueueA, QueueB, QueueC.
The developer runs the job from Orchestrator with the following argument values: in_OrchestratorQueueName = "QueueB" in_OrchestratorQueueFolder = empty value
What is the behavior at runtime?
Answer options
- A. The robot consumes QueueB
- B. An exception is thrown in the Get Transaction Data state
- C. The robot consumes QueueA
- D. The robot consumes TestQueue
Correct answer: C
Explanation
During runtime, since 'in_OrchestratorQueueFolder' is empty, the process will look for the queue specified in 'in_OrchestratorQueueName' within the default folder, which is FolderA. Since QueueB is not found with an empty folder, it defaults to the first available queue in FolderA, which is QueueA, leading to its consumption. The other options are incorrect as they either suggest consuming a non-existent queue or result in exceptions.