UiPath - Repeat
What is an Environment in Orchestrator? A group of Machines defined in Orchestrator Each instance of Orchestrator is an Environment A group of Robots defined in Orchestrator
A group Of Robots defined in Orchestrator
Which of the following tasks can be taken over by RPA robots? Make decisions based on predefined rules Start applications Capture data from text fields
All 3.
What is the default action Of the Play button in the Ribbon? Debug Project Debug Current File Run Project Run Current File
Debug Current File
We want to create a robot that searches for weather information daily and then creates a report based on it. What is the best type of workflow to use? Sequence Flowchart State Machine
Sequence
We want to create a robot that searches stock information daily and then creates a report based on it. Sequence Flowchart State Machine
Sequence
Data scraping extracts structured data The Browser Apps Documents
All 3
Which key combination would you use to activate Intelliprompt in the Immediate panel? Ctrl + Space Ctrl + p Ctrl + I Ctrl + Enter
Ctrl + Space
Typical uses of RegEx include: Data scraping String manipulation Debugging Input validation Interacting with UI elements String parsing
Data scraping String manipulation Input validation String parsing
We have a workflow with successive decision points. Based on the input data and the verifications made, it may have 5 possible outcomes. Sequence Flowchart State Machine
Flowchart
We need to automate a banking process that moves the money from clients' accounts according to certain rules. It makes payments, it calculates interest rates and, each morning, it moves the amounts of money according to specific rules. The process is continuous. Sequence Flowchart State Machine
Flowchart
Can a Robot be added to multiple Environments? Yes, under all conditions No, under any condition Only if the Environments belong to the same Organizational Unit (Service)
Only if the Environments belong to the same Organizational Unit (Service)
Are the Robots in Orchestrator tied to Machines defined in Orchestrator? Yes, always No, all Robots can be used on all the Machines defined in Orchestrator Only it they are Standard Robots
Only it they are Standard Robots
What is the most effective way to handle the click on a UI Element that is not always available? Set the ContinueOnError property of the Click activity to True. Use an Element Exists activity and then a Click activity. Place the Click activity inside a Try/Catch block.
Place the Click activity inside a Try/Catch block.
What are the principles an UiPath implementation should follow? Floating Reliable Unattended Efficient Extensible Maintainable
Reliable Efficient Extensible Maintainable
We are developing a workflow that will be integrated in a bigger project. It consists of logging in to an ERP application using secure credentials, downloading all the invoices that were validated in the previous day and transferring them. Sequence Flowchart State Machine
Sequence
We received a request to create a robot that is listening to a server, until it receives some information. When it does, it starts a processing job, then after the processing is complete, it starts a logging process for the data received. Finally, it returns to listening to the server. Sequence Flowchart State Machine
State Machine
Where will changing a variable in the Immediate panel be reflected? Choose all the options that apply The Locals panel The Watch panel The execution of the workflow at runtime The Output panel The further execution of the workflow in debug mode
The Locals panel The Watch panel The further execution of the workflow in debug mode
You have more than one exception type defined in the Catch block and an exception occurs that fits two types. Which block is executed? All matching blocks in the order they are defined The first match defined The block with most specific match The block with most generic match
The block with most specific match
What information can you follow in the Watch panel? The values of variables or arguments, and the values of user-defined expressions that are in scope. The next activity to be executed and its parent containers when the project is paused in debugging. The output of log message and write line activities.
The values of variables or arguments, and the values of user-defined expressions that are in scope.
Which factors should be considered as criteria for breaking down a project into different workflows? Using more than one application Having sets of activities serving different purposes in the same project Using decision points inside automation projects
Using more than one application Having sets of activities serving different purposes in the same project