Which activity can be used if you want to test whether a condition evaluates to true or false?
Options are :
Answer : A, B
A developer created automation in UiPath to process CVs of job candidates. This process is designed to help the HR team in their daily activities. Every day robot needs to process mails from the HR team sent to its Outlook account. Besides emails from HR, the robot also receives organizational emails and emails from other employees. There are several possible ways to set up the Get Outlook Mail Messages activity for the robot to only extract emails from the HRTeam
Please choosethe incorrectway.
Answer : D
There is no 'From' property in the Get Outlook Mail Messages activity, and all filtering needs to be done in the Filter property of the Get Outlook Mail Messages activity. All 3 strings can be used as a filter to get mails only from the HRTeam.
UiPath Documentation
Exam Topic:Identify and describe how activities are used to automate actions in Excel, e-mail, and .pdfs.
A developer wanted to use a Type Into activity which interacts with hidden or minimized windows. However, the process was only able to run on foreground windows. Which activity property configuration would cause the automation to run only on foreground windows?
Answer : B
What will be executed in the following Try Catch activity if the required selector for Click activity is not found?
Catch block contains catches in the following order:
1. System.SystemException
2.System.Exception
3. UiPath.Core.SelectorNotFound
Please find below the properties of the Click activity
Answer : D
There can be multiple Catchesand, in case of an exception, only the mostspecificException will be caught and its handler executed. In this case, UiPath.Core.SelectorNotFound is the most specific exception.
Activities in Finally to be performed after the Try and Catches blocks are executed. This section is executed only when no exceptions are thrown or when an error occurs and is caught in the Catches section. So in this case, Finally block is executed, as the exception was caught.
UiPath Documentation
Geekhours
Exam Topic:Identify and describe the use of the error handling activities such as Try Catch, Throw, Rethrow, Retry Scope, and Global Exception Handler
What is the best way to select a row with a certain value from a column in Excel?
Options are :
Answer : B
Based on the configuration shown in the exhibit, what is the result of the execution of these activities if the target element does not exist at runtime?
Answer : D
A developer needs to implement the following logic for each row in the Excel table:
- if the value in column ''Price'' is above 130$, then apply a discount of 10%
if the value in column ''Price'' is above 250$ then apply a discount of 7% and store the row in a separate table
- if the date in the column ''Deadline'' is less than 15 days from now, send a mail notification to the analyst mentioned column ''Contact person''
- if the value in the column ''Region'' is ''ELAMA'', apply an additional tax of 3,5%
- if the value in the column ''Additional comments'' is not empty, send the item for review to a responsible team
What is best suited to implement the above-mentioned logic?
Answer : C
Flowcharts can be used in a variety of settings, from large jobs to small projects that you can reuse in other projects.
The most important aspect of flowcharts is that, unlike sequences, they present multiple branching logical operators, that enable you to create complex business processes and connect activities in multiple ways.
UiPath Documentation
UiPath Forum
Exam Topic:Describe how to use state machines versus flowcharts and sequences.