Black Friday Special 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: clap70

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

Questions 4

A developer implements a state machine for his automation solution. What happens if a condition both for T1 and T2 is True?

Options:

A.

Default transition is executed.

B.

T1 transition is executed.

C.

Both T1 and T2 are executed.

D.

An error is thrown.

Buy Now
Questions 5

How can you pass DATA between workflows?

Options are :

Options:

A.

By using arguments

B.

By using variables

C.

By using a pipe

Buy Now
Questions 6

What are the differences between partial selectors and full selectors?

Options:

A.

Partial selectors are recommended when switching between multiple windows.

Full selectors do not include information about the top-level window.

B.

Partial selectors do not include information about the top-level window.

Full selectors are recommended to perform multiple actions in the same window.

C.

Partial selectors are recommended to perform multiple actions in the same window.

Full selectors include information about the top-level window.

D.

Partial selectors include information about the top-level window.

Full selectors are recommended to perform multiple actions in the same window.

Buy Now
Questions 7

What are the differences between a partial selector and a full selector?

Options:

A.

Partial selectors in activities always take longer to execute.

Full selectors can contain wildcards.

B.

Partial selectors are recommended when switching between multiple windows.

Full selectors can only contain one line.

C.

Partial selectors cannot contain wildcards.

Full selectors always include the application name.

D.

Partial selectors can only be configured on activities inside containers.

Full selectors always contain information about the top-level window.

Buy Now
Questions 8

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

Options:

A.

Failed

B.

In Progress

C.

Retried

D.

New

Buy Now
Questions 9

You want to build a Dispatcher process to populate an Orchestrator Queue for parallel processing on multiple robots. Which activity should you use to add a queue item for each work item?

Options are :

Options:

A.

Add Queue Item

B.

Add Transaction Item

C.

Get Transaction Item

Buy Now
Questions 10

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 HR Team .

Please choose the incorrect way.

Options:

A.

"[SenderName] = 'HR Team" in the Filter property of the Get Outlook Mail Messages activity.

B.

"[From] = 'HR Team" in the Filter property of the Get Outlook Mail Messages activity.

C.

"[SenderEmailAddress] = 'hr.team@company.com'" in the Filter property of the Get Outlook Mail Messages activity.

D.

"HR Team" in the From property of the Get Outlook Mail Messages activity.

Buy Now
Questions 11

What happens in the Init state of the Main workflow, in the UiPath Robotic Enterprise Framework template?

Options are :

Options:

A.

The robot reads the configuration file and initializes all the required applications.

B.

The robot checks if the previous transaction is complete and then starts the next one.

C.

The transaction items are extracted from the Queue.

Buy Now
Questions 12

What is the safest way to close an application?

Options are :

Options:

A.

By using the Process Name property of the Kill Process Activity

B.

By sending the Alt + F4 hotkeys

C.

By using the Close Application activity

Buy Now
Questions 13

Which Queue Item properties can be used to control the order in which the items are processed?

Options are :

Options:

A.

ItemInformation

B.

Priority

C.

Deadline

D.

Postpone

Buy Now
Questions 14

Can you run multiple instances of the same process, in parallel?

Options are :

Options:

A.

Yes, on the same robot.

B.

No

C.

Yes, on different robots.

Buy Now
Questions 15

Which emails are deleted if you use Get IMAP Mail Messages with the DeleteMessages property set to true?

Options are :

Options:

A.

Only the emails that were marked as previously read.

B.

There is no DeleteMessages property for the Get IMAP Mail Message activity. This option is available only for Get Exchange Mail Message.

C.

The ones in the list that is retrieved by the Get IMAP Mail Messages activity.

Buy Now
Questions 16

In this exercise, you will create a UiPath automation that performs the steps below.

To achieve this, you will use the REFrameWork as the starting template and follow the UiPath development best practices.

Here are the steps performed by the Robot:

1. Log in to https://www.acme-test.com.

2. On the landing page, Dashboard, click or hover over the Vendors menu item and then click on Search for Vendor. Click on Display All Vendors. Scrape the data from the whole table isplayed. The resulting datatable will be used as the input data for the process. Navigate back to the dashboard.

Note: Navigation can be achieved in multiple ways by the robot - choose whichever you find best.

3. For each Tax ID:

- Navigate to Vendors - Search page (click or hover over the Vendors menu item and then click on Search for Vendor);

- Type the Tax ID into the Vendor Tax ID field;

- Click on Search;

- Extract the values for the Vendor, City and Country and compare them with the values from the previously extracted table from the Display All Vendors page (check for EXACT match for all fields!);

- If the values are not matching, this should be categorized as a Business Rule Exception;

- If the City does NOT belong to the group {""Paris"", ""Bucuresti"", ""Moscow"", ""Stuttgart"", ""Koln""}, this should be categorized as the second Business Rule Exception. We can only process requests from these cities. Check the City value extracted after the individual Tax ID search;

- If no Business Rule Exception, Append the resulting datatable from each page into an Excel worksheet;

you shouldn't worry about the headers and format of the output file.

Constraints to follow in the development, using the REFrameWork:

1. TransactionItem datatype should be a DataRow. The process should recover and retry 2 times in case of errors in navigation between the Vendor Search and Vendor Search Results pages. One transaction is the action of navigating to the Vendor Search page, searching for the TaxID and scraping the values from the resulting one row table. (Similar to ACME Process 5 from the UiPath Academy).

2. Create a separate workflow file for the Login to ACME. File input arguments: URL ; Username ; Password .

3. Create a separate workflow file for closing ACME.

4. Add the ACME_URL and ACME_Credential to the Excel Config file.

5. Populate InitAllApplications.xaml from the Framework folder with Invoking the Login to ACME and navigation to the Work Items.

6. Populate CloseAllApplications.xaml from the Framework folder with Invoking the Close ACME.

7. Populate KillAllProcesses.xaml from the Framework folder with killing the process used.

8. Populate the Process.xaml file with the following actions: Navigation, Searching for TaxID, Scraping, Checking if the values match, Checking for the correct City, Appending to Excel.

Important Note: Don't use external file references outside of the project folder (including Orchestrator Assets). Place all the used files within the project folder, zip that folder and upload it to the UiPath Certification Platform.

Zip ALL the used workflow files AND the output Excel file. Then upload the .zip file to the UiPath Certification Platform.

Options:

Buy Now
Questions 17

A developer published a library component for use within UiPath Studio.

In order to successfully add this library as a dependency to the project, what should be used?

Options:

A.

Invoke Com Method activity

B.

Imports Panel

C.

Invoke Method activity

D.

Manage Packages Window

Buy Now
Questions 18

In which types of variable can you store text?

Options are :

Options:

A.

Integer

B.

String

C.

Double

D.

Generic

Buy Now
Questions 19

What can the UiPath Robotic Enterprise Framework template be used as?

Options are :

Options:

A.

A consumer of a queue in Orchestrator

B.

A complete library for front office robots

C.

The starting point for every automation project

Buy Now
Questions 20

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 21

A developer was assigned a task to build a process that will interact with hidden or minimized windows on an employee's machine.

To ensure the UI automation runs in the background which commonly used activity property must always be avoided?

Options:

A.

Default

B.

Simulate Type

C.

Activate

D.

SendWindowMessages

Buy Now
Questions 22

From the lowest priority to the highest priority, what is the correct priority sequence of the Log Levels for UiPath Robots?

NOTE: Drag and drop the lowest priority level to the top of the list and repeat until the highest priority level appears at the bottom of the list.

Options:

Buy Now
Questions 23

A developer wants to design a process in which multiple decision points will be used to accommodate complex scenarios.

In UiPath Studio, which recommended type of workflow meets this requirement?

Options:

A.

State Machine

B.

Sequence

C.

Global Exception Handler

D.

Flowchart

Buy Now
Questions 24

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?

Options:

A.

"Pop-up exists" message is logged

B.

Robot continues to look for the target element until the execution is manually stopped

C.

Execution completes successfully without logging a message

D.

Activity Timeout Exceeded error is received

Buy Now
Questions 25

A developer wants to use the Dispatcher and Performer architecture.

What describes the characteristics of a Dispatcher and a Performer process?

Options:

A.

Dispatcher is used to add Queue Items to an Orchestrator Queue Performer should be created in the REFramework

B.

Dispatcher can only interact with one Orchestrator Queue Performer is used to process Queue Items one at a time

C.

Dispatcher is used to process transaction items from an Orchestrator Queue Performer can interact with multiple Orchestrator Queues

D.

Dispatcher is always created in the REFramework Performer can only interact with one Orchestrator Queue

Buy Now
Questions 26

A developer reviewed the following sequence:

The parameters of the Invoke Method are:

In order to get the table name of the first element in the DataSet, which expressions should the developer use?

Options:

A.

DataSet.Tables(0).TableName

B.

DataSet.Tables(1).TableName

C.

DataSet.Rows(0).TableName

D.

DataSet.Rows(1).TableName

Buy Now
Questions 27

During the development of a process, a certain label text must be retrieved. After retrieving the text, a button must be clicked and the following occurs:

1.The loading of the label text element takes longer than 30 seconds.

2.The loading of the button takes longer than 30 seconds.

3.The retrieving of the data or clicking the button must be tried until successful.

Based on UiPath best practices, what must the developer use to ensure that an error is thrown if the label text or the button element does not load?

Options:

A.

Use the Get Text activity with the default timeout and set the ContinueOnError property to "True". Use the Click activity in the Retry Scope activity.

B.

Use the Get Text activity with the default properties in a Retry Scope activity. Use the Click activity with the default properties in a Retry Scope activity.

C.

Modify the Get Text activity by increasing the timeout property. Use the Click activity to click the button with the default settings.

D.

Use the Get Text activity with the default timeout and set the WaitForReady property to "None" in a Retry Scope activity.

Modify the Click activity by increasing the timeout property and set the ContinueOnError property to "True".

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 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 30

Which file in the Robotic Enterprise (RE) Framework reads the Data/Config.xlsx file and retrieves assets from Orchestrator into the process?

Options:

A.

KillAllProcesses.xaml

B.

InitAllApplications.xaml

C.

InitAllSettings.xaml

D.

Process.xaml

Buy Now
Questions 31

When debugging a process, you run in Debug mode and are paused at a breakpoint.

To quickly execute the activity with the breakpoint and proceed with the execution, which button should be clicked on the Execute tab of Studio?

Options:

A.

Step Into

B.

Break

C.

Step Over

D.

Continue

Buy Now
Questions 32

A developer creates a Dispatcher which extracts information from the top 30 mail messages in Microsoft Outlook and uploads that information into a queue.

What is the recommended way to avoid processing duplicates of the same Queue Items?

Options:

A.

Create an Excel file of processed Queue Items and loop through the list to check if the current Queue Item has been processed before.

B.

Add a descriptive "Reference" in the "Add Queue Item" activity and check that it does not equal the "Reference" of the Queue Item last processed.

C.

Set the "Unique Reference" of the queue to "Yes" and "Auto Retry" of the queue to "No".

D.

Set the "Unique Reference" of the queue to "Yes" and add a descriptive "Reference" in the "Add Queue Item" activity.

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

Where in the Robotic Enterprise (RE) Framework template project is the SetTransactionStatus.xaml invoked?

Options:

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 Process Transaction state.

C.

In the Finally section of the Try Catch activity in the Process Transaction state.

D.

In the Try section of the Try Catch activity in the End Process state.

Buy Now
Questions 35

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 36

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 37

A developer is creating a process using the Dispatcher and Performer model. The Dispatcher uses the Bulk Add Queue Items activity to upload items to an Orchestrator queue. Which type of design is best-suited for the automation of this Dispatcher?

Options:

A.

Library

B.

Iterative Process

C.

Transactional Process

D.

Linear Process

Buy Now
Questions 38

At the end of the execution of Workflow1, which retrieves some items from a database, is the database connection closed automatically?

Options are :

Options:

A.

Yes, the connection is closed after 30 seconds.

B.

The connection has to be closed using a Disconnect activity.

C.

Only the database admin can decide this aspect.

Buy Now
Questions 39

In UiPath Robotic Enterprise Framework, the value of MaxRetryNumber in the Config.xlsx file should be set to a number greater than 0 to enable the retry mechanism in the following cases:

Options are :

Options:

A.

Get data from UiPath Orchestrator queues with Auto Retry disabled.

B.

Get data from spreadsheets, databases, email, web API.

C.

Do not work with UiPath Orchestrator queues.

Buy Now
Questions 40

Please select the incorrect statement about Rethrow activity.

Options:

A.

Rethrow activity throws an exception previously caught in an exception handling block.

B.

Rethrow activity must be a child of a Catch handler of a TryCatch activity.

C.

Rethrow activity is used when additional activities need to be added before the exception is thrown.

D.

You can specify which error type should be thrown in Rethrow activity.

Buy Now
Questions 41

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

Buy Now
Questions 42

A developer is working on an existing project in which GIT is used as the source control. Another team member wants to compare two versions of a particular workflow in this project. Which UiPath Studio option provides this capability?

Options:

A.

Pull (rebase)

B.

Checkout Branch

C.

Show History

D.

Push

Buy Now
Questions 43

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 44

Review the following exhibit:

What is the result of clicking the "Run in PiP" button?

Options:

A.

The attended process starts in an isolated Windows session.

The user is prompted with a window to enter credentials on every run.

B.

The attended process starts on a remote machine.

The user is prompted with a window to enter credentials.

C.

The attended process starts in an isolated Windows session.

The user is logged in with the credentials entered from the main session.

D.

The attended process starts in the same Windows session.

The user is logged in automatically with their credentials.

Buy Now
Questions 45

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 46

A developer creates a workflow that extracts the date of birth for different account holders in a web application. The following selector represents the selector structure for a 6-digit account number 123456.

Assume only the account number value changes in the selector and there is a defined list of 6-digit account numbers.

The developer needs to fine-tune the selector to work only for a pre-selected list of account numbers. What represents an example of a good selector?

Options:

A.

Where accountNumber is a 6-digit string variable containing an account number

B.

Where accountNumber is a 6-digit string variable containing an account number

C.

Where accountNumber is a 6-digit string variable containing an account number

D.

Where accountNumber is a 6-digit string variable containing an account number

Buy Now
Questions 47

The following reflects a subset of process steps from the Process Definition Document (PDD):

1) Read the unread emails from the Robot mailbox and mark them as read.

2) If the email has an attachment of type PNG, download the attachment.

3) Else, send a reply to the sender with the message "Invalid Attachment, please attach a .PNG file to process".

If you are designing a process based on the PDD steps, what is the correct exception type for Step 3?

Options:

A.

UiPath.Core.BusinessRuleException

B.

System.ArgumentException

C.

UiPath.Core.InvalidImageException

D.

System.Exception

Buy Now
Questions 48

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

Buy Now
Questions 49

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

Buy Now
Questions 50

A developer created the following sequence:

The following reflects the Catches block for the Try Catch activity:

The Variable tab appears below:

The Properties for the Retry Scope activity are shown below:

The Properties for the On Element Appear activity are as follows:

Based on the configurations shown in the exhibits, which output is displayed in the Output panel when the target exists at runtime and it is not visible on the screen?

Options:

A.

Snipping tool-option New Pop-up exists

Snipping tool-option New Pop-up exists

Snipping tool-option New Pop-up exists

B.

Snipping tool-option New Pop-up exists

Snipping tool-option New Pop-up exists

Snipping tool-option New Pop-up exists

C.

Value of counter is: 4

D.

Snipping tool-option New Pop-up exists

Snipping tool-option New Pop-up exists

Snipping tool-option New Pop-up exists

Value of counter is: 4

Buy Now
Questions 51

A developer wants to determine how much time it takes for an activity to perform.

Based on the exhibit, what should the developer use to know how much time has elapsed in executing the Timed Activity sequence?

Options:

A.

StartTime = DateTime.Now

ElapsedTime = DateTime.Now.ToString("HH:mm:ss") - StartTime.ToString

B.

StartTime = DateTime.Now

EllapsedTime = (DateTime.Now.Second - StartTime.Second).ToString

C.

StartTime = DateTime.Now

ElapsedTime = ((DateTime.Now - StartTime).TotalSeconds).ToString

D.

StartTime = DateTime.Now.ToString("HH:mm:ss")

EllapsedTime = DateTime.Now - StartTime

Buy Now
Questions 52

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
Exam Code: UiPath-ARDv1
Exam Name: UiPath Advanced RPA Developer v1.0 Exam (UiARD)
Last Update: Nov 23, 2024
Questions: 348
UiPath-ARDv1 pdf

UiPath-ARDv1 PDF

$25.5  $84.99
UiPath-ARDv1 Engine

UiPath-ARDv1 Testing Engine

$30  $99.99
UiPath-ARDv1 PDF + Engine

UiPath-ARDv1 PDF + Testing Engine

$40.5  $134.99