Summer Special 60% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: bestdeal

Free UiPath UiPath-ARDv1 Practice Exam with Questions & Answers | Set: 6

Questions 51

You have two lists in a workflow:

1) FranceCities which contains city names in France

2) IndiaCities which contains city names in India

In order to show all city names from both lists, which expression should be used as the input to a MessageBox?

Options:
A.

String.Join(",", FranceCities.ToString + IndiaCities.ToString)

B.

FranceCities.Concat(IndiaCities).ToList.ToString

C.

String.Join(",", Enumerable.Concat(FranceCities, IndiaCities).ToList)

D.

Enumerable.Concat(FranceCities, IndiaCities).ToString

UiPath UiPath-ARDv1 Premium Access
Questions 52

A developer has a project which includes a Global Exception Handler. Based on best practice, all exceptions should be caught and handled as defined by the business requirements. To ensure the defined exceptions do not reach the Global Exception Handler, which activity must be used?

Options:
A.

Retry Scope

B.

Throw

C.

Rethrow

D.

Try Catch

Questions 53

A developer has added a Log Message activity in the Catch block of a Try Catch activity. The Log Message activity is executed when the process tries to recover from an unknown System Exception.

What is the recommended level for the Log Message activity?

Options:
A.

Fatal

B.

Info

C.

Trace

D.

Error

Questions 54

An attended automation user wants to run two background processes in UiPath Assistant: UpdateTimecards Process and GetPTODays Process. What is a characteristic of running these processes?

Options:
A.

UpdateTimecards Process and GetPTODays Process can be run concurrently only if started from Orchestrator

B.

UpdateTimecards Process and GetPTODays Process can only be run sequentially

C.

An exception is thrown if the processes are executed concurrently

D.

UpdateTimecards Process and GetPTODays Process can be run concurrently

Questions 55

A developer defined two Int32 variables, FirstInt and SecondInt, in a workflow. Which panel can the developer use to monitor the result of the expression. FirstInt > SecondInt, throughout the execution of the workflow in Debug mode?

Options:
A.

Breakpoints Panel

B.

Locals Panel

C.

Watch Panel

D.

Immediate Panel

Questions 56

You need to include rows from one datatable named "dt1" in another datatable named "dt2".

Instructions: From the drop-down lists for Invoke Method on the "For Each Row in Data Table" display, select the correct value of each field for the "Invoke Method". Next, from the drop-down

list on the Parameters display, select the correct Value to complete this task.

UiPath-ARDv1 Question 56

Options:
Questions 57

A developer is automating a production level process in the Robotic Enterprise (RE) Framework. Based on best practices, when should the developer log a meaningful message with the Logging Level as "Information"?

Options:
A.

Each time an exception is caught in a Catch block

B.

Every time the robot encounters an error on a Queue Item

C.

Every time a variable or argument value is used

D.

Each time data is read from external sources

Questions 58

A developer wants to initialize a dictionary with a key of integers and values that are strings. Which initialization expression should be used?

Options:
A.

New Dictionary (Of Int32, String) from {{"3", "5"}, {"three", "five"}}

B.

New Dictionary (Of Int32, String) from {{3, "three"}, {5, "five"}}

C.

New Dictionary (Of Int32, String) from {{"3", "three"}, {"5", "five"}}

D.

New Dictionary (Of Int32, String) from {{3, 5}, {"three", "five"}}

Questions 59

A developer created an automation project in the Robotic Enterprise (RE) Framework which needs to enter a User ID depending on the machine it runs on. The User ID is stored in Orchestrator as a Text asset using the Value Per Account-Machine method.

Which steps should the developer perform to use this asset in the project?

Options:
A.

Add a row in the Settings sheet in Config.xlsx with the name of the Orchestrator asset.

Use the Get Asset activity in the workflow to get the User ID.

B.

Add a row in the Settings sheet in Config.xlsx with the name of the Orchestrator asset.

In the workflow, retrieve the User ID by referencing the Config dictionary.

C.

Add a row in the Assets sheet in Config.xlsx with the name of the Orchestrator asset.

Use the Get Asset activity in the workflow to get the User ID.

D.

Add a row in the Assets sheet in Config.xlsx with the name of the Orchestrator asset.

In the workflow, retrieve the User ID by referencing the Config dictionary.

Questions 60

A developer is building a process which types data into input fields and needs to use the Hardware Events input method. In addition, the developer wants to decrease the speed with which the input string characters are typed into the fields.

Which property of the Type Into activity should the developer edit?

Options:
A.

DelayAfter

B.

WaitForReady

C.

DelayBefore

D.

DelayBetweenKeys