DRAG DROP
What is the correct execution order of the State activity sections?
Instructions: Drag the Description found on the “Left” and drop on the correct Execution Order found on the “Right”.
Select and Place:
To retrieve all Outlook emails with the word "UiPath" in the subject, which filtering property and filter schema should a developer use?
A. Property: FilterByMessageIds Schema: "@SQL=""urn:schemas:httpmail:subject'"' like 'UiPath%'"
B. Property: Filter Schema: "@SQL=""urn:schemas:httpmail:subject"" like 'UiPath%'"
C. Property: Filter Schema: "@SQL=""urn:schemas:httpmail:subject"" like '%UiPath%'"
D. Property: FilterByMessageIds Schema: "@SQL=""urn:schemas:httpmail:subject"" like '%UiPath%'"
Where in the REFramework template project is the "SetTransactionStatus.xaml" invoked?
A. In the Finally section of the Try Catch activity in the End Process state.
B. In the Try section of the Try Catch activity in the End Process state.
C. In the Try and Catches sections of the Try Catch activity in the Process Transaction state.
D. In the Try section of the Try Catch activity in the Process Transaction state.
A developer has defined a variable named "CurrentDate" of type DateTime. Which of the following expressions can be used to show what hour was 12 hours prior to the date from the variable?
A. DateTime.SubtractHours(CurrentDate, 12).Hour
B. CurrentDate.AddHours(?2).Hour
C. CurrentDate SubtractHours(12).Hour
D. DateTime.AddHours(CurrentDate, ?2).Hour
When should a developer log a coherent message with the Logging Level set as "Info" while building an automation project?
A. Every time data is read from external sources.
B. Every time an exception is caught in a Catch block.
C. Every time a variable or argument value is used.
D. Every time the robot encounters an error processing a Queue Item.
"Process A" is scheduled to run at 2:00 PM using a time trigger with the Schedule ending of job execution feature configured to stop the job after 20 minutes. Assuming that the robots are busy and "Process A" is queued until 2:05 PM, at what time will "Process A" be stopped?
A. 2:20 PM
B. 2:25 PM
C. 2:05 PM
D. 2:28 PM
What is a prerequisite for performing Remote Debugging using an Unattended Robot connection?
A. Studio, the remote robot have the same version.
B. The same user must be signed in Studio and the remote robot.
C. Studio and the remote robot must be connected to the same Orchestrator tenant.
D. TCP/IP connectivity exists between the Studio machine and the remote machine.
A developer configured the properties for a Click activity as shown below: What happens if the activity cannot find its target at runtime?
A. An exception is thrown after 10 milliseconds.
B. An exception is thrown after 10 seconds.
C. The next activity is executed after 10 seconds.
D. The next activity is executed after 10 milliseconds.
Consider testing a workflow that computes the sum of two numbers having the data driven test data from the Excel file below:
Expanding the functionality of the workflow to compute the sum of three numbers, the data needs to be updated as well to accommodate the new scenario:
What are steps to do that?
A. Click Right on the Test Case and select Update Test Data.
B. Click Right on the Test Case and select Add Test Data.
C. Click Right on the Test Case and select Refresh Test Data.
D. Click Right on the Test Case and select Remove Test Data.
A developer designed a project in the REFramework. The "Config.xisx" has the following Setting entry:
Assuming the default REFramework configuration, how can the developer reference the Setting in the Config variable to obtain the Setting value as a String from the dictionary?
A. Config("OrchestratorQueueName", "ProcessABCQueue").ToString
B. Config("OrchestratorQueueName").ToString
C. Config("ProcessABCQueue", "OrchestratorQueueName").ToString
D. Config("ProcessABCQueue").ToString