complete solution
What is the recommended layout to define business logic in a complex process
automation?
Flowchart
As a best practice, how should workflows use a local desktop application?
- By checking if the corresponding process is running and if not, opening the application
by using the Open Application activity.
- By using selectors to interact with the application.
- By closing the application once it's no longer needed.
Which of the following is a good example of a workflow name?
GetCostumerNumber.xaml
How can you extract data from an invoked workflow?
- By using Out arguments.
- By using In/Out arguments.
Which of the following phrases are true regarding Project Organization?
- Saves time for all team members
- Is a constant concern of the robot developer
What is the recommended layout for a sequence of UI Interactions?
Sequence
How can you trigger another workflow from within your current one?
By using the Invoke Workflow File activity.
How should an RPA developer address runtime exceptions in the workflows?
- By logging any exception events
- By using automatic recovery sequences inside the Catch blocks.
- By using Try/Catch blocks when invoking external workflow files
How can you manage passwords for an automation project?
- With Windows Credential Manager
-With the Get Password activity
What is the recommended layout for sequential activities?
Sequence
Is notifying the user via a Message Box activity a good way to keep track of a
workflow's execution progress ?
No
What type of arguments can you use in a workflow?
, - In
-Out
- In/Out
Which of the following is a good example of a workflow name?
GetCustomerNumber.xaml
Is "Workflow2.xaml" a good name for a reusable workflow?
No
What activity is used to chain together multiple workflows in a single
automation?
Invoke Workflow File activity
What is considered a best practice in large projects?
- Breaking a large process in smaller workflows
- Giving descriptive names to variables and workflows
- Testing workflows independently
How can you trigger another workflow from within your current one?
By using the Invoke Method activity.
What can you use to add more details about the process in the workflow itself?
- Adding activity annotations
- The comment activity (maybe)
As a best practice, how should workflows use a local desktop application?
- By closing the application once it's no longer needed.
- By using selectors to interact with the application.
When is it recommended to use nested If activities inside workflows?
You should avoid using nested If activities.
Which of the following phrases are true regarding Project Organization?
- Saves time for all team members
- Is a constant concern of the robot developer
Where can you see the variables' values during workflow execution?
In the Locals pane
What happens if you put a Breakpoint on a Click activity and start the workflow in
Debug mode?
The workflow will be paused unti you click the Continue button.
What can you use to make sure that the execution continues even if an activity
fails?
Try/Catch activity
What does the Locals panel display when you are working in Debug mode?
The current values of your variables
How can execution be paused before a particular activity?
- By using a breakpoint in Debug mode
-By using a Break activity