Weekend Special Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: cramtick70

UiPath-ARDv1 UiPath Advanced RPA Developer v1.0 Exam (UiARD) Questions and Answers

Questions 4

A developer is adding a Log Message activity in an Exit section of a single state within a state machine. When will the Log Message activity in the Exit section be executed?

Options:

A.

After the activities in the Entry section and the activities in the trigger are executed.

B.

After the activities in the Entry section are executed, but only if there are exceptions.

C.

Immediately after the activities in the Entry section are executed.

D.

After the activities in the Entry section are executed and the transition to the next state is confirmed.

Buy Now
Questions 5

A developer needs to create a process that performs the following:

1.Scrapes a table of common English-Spanish translations

2.Writes the table to an Excel file

3.Emails that Excel file as an attachment

While creating this process, the developer notices that two activities with the same name can write the scraped DataTable to Excel.

What are the differences between the Workbook and Excel Write Range activities?

Options:

A.

Excel Write Range activity can only be used when Excel is installed.

Workbook Write Range activity can be faster by writing the data directly to the file.

B.

Excel Write Range activity only works in the foreground, visible to the user. Workbook Write Range activity only works in the background.

C.

Excel Write Range activity will create the file in the WorkbookPath property if it does not exist. Workbook Write Range activity can only be used when Excel is installed.

D.

Excel Write Range activity only works in the background.

Workbook Write Range activity will create the file in the WorkbookPath property if it does not exist.

Buy Now
Questions 6

A developer wants to extract data from "Sheet1" of the "Test.xls" file using the following code:

In addition, the developer configured the following properties of the Read Range activity:

Based on the exhibits, what is the output of the expression, OutputDataTable.Rows.Count and what values will be contained in the OutputDataTable?

Options:

A.

OutputDataTable.Rows.Count = 1

Contains the values of cells "A2" and "B2"

B.

OutputDataTable.Rows.Count = 2

Contains the values of cells "A1" and "B1"

C.

OutputDataTable.Rows.Count = 2

Contains the values of cells "A2" and "B2"

D.

OutputDataTable.Rows.Count = 10,000

Contains the values of cells "A2" and "B2"

Buy Now
Questions 7

A developer needs to create an Out argument to pass the results of a Data Scraping activity to another workflow. The activity scrapes text from a structured list on a website.

From the drop-down list shown in the exhibit, select the Argument Type that should be used.

Options:

Buy Now
Questions 8

You are developing a .xaml file to interact with multiple fields of a web page. You want to Auto Empty the fields that require input.

Which input method(s) will automatically empty the target input fields?

Options:

A.

"SendWindowMessages" only

B.

"Default" and "SimulateType"

C.

"SimulateType" only

D.

"SimulateType" and "SendWindowMessages"

Buy Now
Questions 9

Which of the following are considered best practices? Select all the options that apply.

Options are :

Options:

A.

Keeping environment settings hard coded inside workflows.

B.

Breaking the process into smaller workflows.

C.

Reusing workflows across different projects.

Buy Now
Questions 10

In UiPath Studio, what describes project validation and workflow analysis?

Options:

A.

Validation of the file or project is performed whenever the Workflow Analyzer is triggered.

B.

Validation of the file or project is performed after the Workflow Analyzer finishes the report.

C.

Validation of the file or project is performed only if the user triggers Validate File and Validate Project.

D.

Validation of the file or project is performed only when running or debugging.

Buy Now
Questions 11

A developer uses Workflow Analyzer with the default rules to check if a project follows best practices. In one of the workflows, the Properties of a Click activity is shown in the following exhibit.

Which warning will be shown in the Analyzer output for this activity?

Options:

A.

Timeout values is not defined in activity Click Calculator button

B.

Hardcoded delays used in activity Click Calculator button

C.

Activity Click Calculator button has a default name

D.

SendWindowMessages not checked in activity Click Calculator button

Buy Now
Questions 12

A developer is creating an automation project which creates a temporary password in the company’s system for new employees and later enters it into a desktop application. To protect this sensitive information, how can the developer avoid the password from being displayed on screen when it is entered into the desktop application?

Options:

A.

Ensure the password variable is of the SecureString variable type

B.

Check the Private property on all activities that reference the password variable

C.

Store the temporary password in an Excel file that the process can access

D.

Check the Isolated property when invoking a workflow with the password variable

Buy Now
Questions 13

What is the slowest method of reading text?

Options are :

Options:

A.

Native

B.

FullText.

C.

OCR

Buy Now
Questions 14

In which situation can "idx" be used in a reliable selector?

Options:

A.

When the exact n-th element in a static UI list is needed in the process

B.

When the "idx" value is either 1 or 2

C.

When the selectors of the elements in the application rarely change

D.

When a dynamic selector is required

Buy Now
Questions 15

A developer plans to create a process to automate a web application. The web application requires HTML buttons and text boxes to be loaded. Although some assets may still be loading, the robot should perform the UI actions once the buttons and text boxes are loaded.

Which property should be configured?

Options:

A.

TimeoutMS = 10000

B.

WaitForReady = Complete

C.

TimeoutMS = Int32.MaxValue

D.

WaitForReady = Interactive

Buy Now
Questions 16

A developer configured the Activity Project Settings for a UI automation and a Click activity in the project shown in the following exhibits:

If the target element is not found during execution in Debug mode, how long will it take until an error is thrown?

Options:

A.

10 seconds

B.

15 seconds

C.

20 seconds

D.

30 seconds

Buy Now
Questions 17

A developer created a custom rule for Workflow Analyzer and wants to make it available only at the project level.

Which action should the developer perform?

Options:

A.

Create an external assembly (.dll) of the rule and copy it to the Studio install location.

B.

Create an external assembly (.dll) of the rule and copy it to the project location.

C.

Create a Nuget package (.nupkg) of the rule and publish it to Orchestrator.

D.

Create a Nuget package (.nupkg) of the rule and install it in a Studio project as a dependency.

Buy Now
Questions 18

A developer configured the properties for a Click activity on an element inside a web page as shown in the exhibit. An animation on the web page never completely loads but the element specified in the Click activity does.

What occurs when this Click activity executes?

Options:

A.

Timeout error occurs without clicking on the element.

B.

Waits 10 seconds before clicking on the element.

C.

Continues to the next activity after 30 seconds without clicking on the element.

D.

Element is clicked once it is fully loaded.

Buy Now
Questions 19

A developer has two collections containing data:

1) A list of strings called listA that was initialized with 2 items

2) An array of strings called arrayB that was initialized with 2 items

How can both collections be combined into a single 4-item collection called results?

Options:

A.

Use the Add To Collection activity with arrayB as the parameter

B.

Use the String.Join method with listA and arrayB as parameters

C.

Use a Multiple Assign activity to add each item from arrayB to listA

D.

Use a For Each activity to iterate through listA and add each item to arrayB

Buy Now
Questions 20

A developer created a process with the Robotic Enterprise (RE) Framework, uploaded the package on the Orchestrator, and created a job for it. Once these steps are performed, the job is started from the Orchestrator and begins to process transactions. After two processed transactions, the job is stopped from Orchestrator.

At which point in the workflow will this job stop?

Options:

A.

After the currently running workflow is executed because the stop command is propagated to the robot and the execution will be ended.

B.

Next time the Get Transaction Data state is executed, the stop command is detected and the execution

transitions to the End Process state.

C.

Immediately, because the stop command is propagated to the robot and the execution will be ended.

D.

After the current transaction is finished, the Process Transaction state will detect the stop command and transitions to the End Process state.

Buy Now
Questions 21

How can you dynamically change parts of a selector?

Options are :

Options:

A.

By using variables to replace the dynamic parts

B.

You cannot have dynamic components in a selector.

C.

By adding parameters from the Properties tab.

Buy Now
Questions 22

Please select the correct statement about Global Exception Handler.

Options:

A.

Every automation project includes a Global Exception Handler.

B.

The Global Exception Handler is available for library projects and processes.

C.

The Global Exception Handler has two arguments that can be removed.

D.

Only one Global Exception Handler can be set per automation project.

Buy Now
Questions 23

What can be used to debug a workflow?

Options are :

Options:

A.

Breakpoints

B.

The Slow Step option.

C.

Highlighting activities.

Buy Now
Questions 24

Based on UiPath best practices, which project layout is recommended for processes with complex transitions in UiPath Studio?

Options:

A.

State Machine

B.

Global Exception Handler

C.

Flowchart

D.

Sequence

Buy Now
Questions 25

A developer wants to use the Robotic Enterprise (RE) Framework to automate a business process. The TransactionData of this process is a collection(List) of vendor names.

From the drop-down list shown in the exhibit, select the variable type for the TransactionItem.

Options:

Buy Now
Questions 26

A developer wants to create a process for a Call Center user. This process must:

1.Interact with application windows that are minimized or in the background.

2.Allow the user to interact with separate desktop applications at the same time.

Which workflow activity requires modifications to some of the properties' default values to ensure this process runs in the background?

Options:

A.

Get Text

B.

Element Exists

C.

Select Item

D.

Type Into

Buy Now
Questions 27

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

Options:

A.

1. System.SystemException

2. Finally block

B.

1. UiPath.Core.SelectorNotFound

C.

1. System.Exception catch

2. Finally block

D.

1. UiPath.Core.SelectorNotFound

2. Finally block

Buy Now
Questions 28

A developer needs to automate a process which involves capturing support ticket numbers from the email subject line. For example, the email subject line includes: "Action Required – XA/135" where "XA/135" is the ticket number. The robot should validate the pattern of the ticket number before proceeding.

Which expression exclusively matches the ticket number pattern from the subject line?

Options:

A.

Option A

B.

Option B

C.

Option C

D.

Option D

Buy Now
Questions 29

A developer has built a process consisting of three invoked workflows in the Main.xaml file. The second workflow should be run in Picture-in-Picture (PiP). How should the Invoke Workflow File activity properties be configured?

Options:

A.

Target Session = Picture in Picture

Isolated = Checked

B.

Target Session = Current

Isolated = Unchecked

C.

Target Session = Picture in Picture

Isolated = Unchecked

D.

Target Session = Current

Isolated = Checked

Buy Now
Questions 30

During the execution of a process, a button must be clicked to open an application. Based on best practice, what should the developer use to ensure the button element is clicked and the automation process continues?

Options:

A.

Use the Click activity within the Try Block and the Catch Block of a Try Catch activity to open the application

B.

Use the Click activity in the Action of a Retry Scope activity with a Condition that an element exists within the opened application

C.

Modify the Click activity used to open the application by setting the ContinueOnError property to “True”

D.

Modify the Click activity used to open the application by increasing the timeout property an additional 30 seconds

Buy Now
Questions 31

You want to identify a selector for a button in an application. The selector will be used as the target in a Click activity.

In order to ensure the Click activity executes as intended, how many elements should the selector be valid for at runtime?

Options:

A.

1 element

B.

2 elements

C.

3 elements

D.

5 elements

Buy Now
Questions 32

A developer has created the following sequence:

The Write Cell activity has the following properties:

What is the behavior of the sequence once executed?

Options:

A.

Writes the values in the same row in the Active Users.xlsx Excel file

B.

Writes the values in subsequent rows in the UserName datatable

C.

Writes the values in subsequent rows in the Active Users.xlsx Excel file

D.

Writes the values in the same row in the UserName datatable

Buy Now
Questions 33

While working with a queue in Orchestrator, you notice that the status of one of the Queue Items has changed to Abandoned.

When does this happen?

Options:

A.

When the item remains in the "Failed" status for approx. 24 hours

B.

When the item remains in the "In Progress" status for approx. 24 hours

C.

When the item remains in the "Retried" status for approx. 24 hours

D.

When the item remains in the "New" status for approx. 24 hours

Buy Now
Questions 34

In UiPath Robotic Enterprise Framework, what are the transitions of the Init state?

Options are :

Options:

A.

In the case of Success, the transition is to the Process Transaction state.

B.

In the case of System Error, the transition is to the End Process state.

C.

In the case of Success, the transition is to the Get Transaction Data state.

D.

In the case of System Error, the transition is to the Init state.

Buy Now
Questions 35

Which is the best way to delete unreferenced variables?

Options are :

Options:

A.

Delete them one by one from the Variables panel. UiPath Studio performs the workflow validation in real time, therefore you can see which variable is being used.

B.

The unreferenced variables do not utilise memory, therefore you do not have to delete them.

C.

You can manage your variables from the Design panel > Manage Variables > Remove Unreferenced.

Buy Now
Questions 36

A developer is using UiExplorer to modify selectors. The "Repair" button is present in UiExplorer. What is its functionality and when does this button appear?

Options:

A.

Enables you to re-indicate the same target UI element and fix the selector. The button is available only when the selector is valid.

B.

Indicates a new UI element to replace the previous one. The button is enabled only if the selector is valid.

C.

Indicates a new UI element to replace the previous one. The button is enabled only if the selector is invalid.

D.

Enables you to re-indicate the same target UI element and fix the selector. The button is available only when the selector is invalid.

Buy Now
Questions 37

If a large item collection is processed using For Each, which activity enables you to efficiently exit the loop after a specific moment?

Options are :

Options:

A.

No activity can be used. Instead, you have to create a Boolean variable based on which the For Each loop is broken

B.

The "Break" activity is the most suitable in For Each

C.

A While loop should be used instead of For Each

Buy Now
Questions 38

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?

Options:

A.

SendWindowMessages property was enabled in the Type Into activity.

B.

SimulateType property was enabled in the Type Into activity.

C.

Activate property was disabled in the Type Into activity

D.

Default property selections of the Type Into activity were used.

Buy Now
Questions 39

A developer is building a workflow that extracts the name of companies based on their IDs and then stores them in a datatable. The workflow contains a String variable that stores the company name, an output argument that stores the Company ID, and a datatable.

What represents an example of a naming convention best practice?

Options:

A.

String variable name: CompanyName

Argument name: CompanyId

Data Table name: Dt_Companydata

B.

String variable name: CompanyName

Argument name: out_companyId

Data Table name: companydata

C.

String variable name: company_name

Argument name: out_companyId

Data Table name: DT_Companydata

D.

String variable name: CompanyName

Argument name: out_CompanyId

Data Table name: dt_CompanyData

Buy Now
Questions 40

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

Buy Now
Questions 41

A developer creates a Dispatcher process which extracts information from a Microsoft Excel file and uploads that information into an Orchestrator queue. Based on best practice, what is the recommended way to avoid creating duplicate Queue Items?

Options:

A.

Enable the Enforce unique references field of the queue

Add a descriptive "Reference" in the Add Queue Item activity

B.

Add a descriptive "Reference" in the Add Queue Item activity

Ensure that the "Reference" does not equal the "Reference" of the Queue Item last loaded

C.

Create an Excel file of processed Queue Items

Loop through the list to check if the current Queue Item to upload has been uploaded before

D.

Disable the Enforce unique references field of the queue

Enable the "Auto Retry" of the queue

Buy Now
Questions 42

A developer created a production level automation using the Robotic Enterprise (RE) Framework. Any values used within the automation are referenced from the Config.xlsx file included in the framework.

What are the differences between the Settings sheet and the Assets sheet in the Config.xlsx file?

Options:

A.

Settings sheet contains only values used for the initialization of applications.

Assets sheet contains only Credential Assets stored in Orchestrator.

B.

Settings sheet contains only hard-coded values.

Assets sheet contains all names of Orchestrator Assets including those of type Credential.

C.

Settings sheet contains Credential Assets stored in Orchestrator.

Assets sheet contains hard-coded values.

D.

Settings sheet contains hard-coded values and names of Credential Assets.

Assets sheet contains all names of Orchestrator Assets except those of type Credential.

Buy Now
Questions 43

A developer created a sequence with a Retry Scope shown in the following exhibit:

What is the content of the Output panel after running this sequence?

Options:

A.

0

B.

1

C.

1

2

3

D.

1

2

3

Retry Scope: End

Buy Now
Questions 44

A developer automated a Performer process using the Robotic Enterprise (RE) Framework. Which state executes after the Process Transaction state has a result of "Success"?

Options:

A.

Process Transaction

B.

Get Transaction Data

C.

End Process

D.

Initialization

Buy Now
Questions 45

A developer has set custom values for the DelayBetweenPagesMS property in the Activity Project Settings. Which activity can be impacted?

Options:

A.

Navigate To

B.

Extract Structured Data

C.

Extract PDF Page Range

D.

Attach Browser

Buy Now
Questions 46

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

Buy Now
Questions 47

A developer wants to execute a macro stored in the UiPath_Raport2021.xlsm file. What will be the value of the result variable once the following sequence is executed?

Please find the properties of Execute Macro activity below

Please fin the macro "Calculate" below

Options:

A.

An error will be thrown

B.

6

C.

12

D.

null

Buy Now
Questions 48

A developer uses REFramework to create a complex automation project.

In the Settings sheet of the Config file, the developer writes "fileName" in the Name column and "Fin_Excel_FileName" in the Value column.

In Orchestrator, the developer creates an asset named "Fin_Excel_FileName" with the value "Report_Udemy2021.xlsx".

What will be the value of Config("fileName").ToString?

Options:

A.

fileName

B.

Report_Udemy2021.xlsx

C.

Fin_Excel_FileName

D.

null

Buy Now
Questions 49

What activity can you use to get a column value from a specific row of a DataTable?

Options are :

Options:

A.

Row Read Cell

B.

Get Row Item

C.

Remove Data

Buy Now
Questions 50

The String.Format("Input = {0} and Output = {1}", "1","2") expression returns the following text:

Options are :

Options:

A.

Input = 0 and Output = 0

B.

Input = 1 and Output = 2

C.

Input = 1 and Output = 1

D.

Input = {0} and Output = {1}

Buy Now
Questions 51

Which of the following are considered best practices?

Options are :

Options:

A.

Deleting disabled code.

B.

Removing unreferenced variables.

C.

Leaving target applications opened.

Buy Now
Questions 52

A developer uses a For Each Row in Data Table activity to iterate through a sampleDataTable that stores current prices of the product and price at the discount. The developer wants to remove some rows (please see the condition in the If activity) and display, how many rows were left in the datatable. What will be the result of the processing?

Please find the BuildDataTable wizard below:

Options:

A.

Message Box activity will throw an error.

B.

Message Box activity will display the value: "1".

C.

Message Box activity will display the value: "3".

D.

For Each Row In Data Table activity will throw an error.

Buy Now
Exam Code: UiPath-ARDv1
Exam Name: UiPath Advanced RPA Developer v1.0 Exam (UiARD)
Last Update: Sep 7, 2024
Questions: 348
UiPath-ARDv1 pdf

UiPath-ARDv1 PDF

$24  $80
UiPath-ARDv1 Engine

UiPath-ARDv1 Testing Engine

$28.5  $95
UiPath-ARDv1 PDF + Engine

UiPath-ARDv1 PDF + Testing Engine

$39  $130