11.11 Special Sale Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: scxmas70

UiPath-ARDv1 Exam Dumps - UiPath Advanced RPA Developer v1.0 Exam (UiARD)

Question # 4

A developer met with a rental car company to review their business requirements which takes reservations from a Microsoft Outlook email box. The company has indicated the following occurs in their application:

1.Login to the rental car company's desktop application

2.Navigate to the Rental Requests section

3.Get emails from their Microsoft Outlook account

4.Extract data from the current email and add it to the queue

5.For each Queue Item:

-a) Navigate to the Reservations section

-b) Add the booking details into the Reservations section

-c) Close the current reservation and move to a new one

6.Log out and close the company's application

The developer needs to create a process using the Dispatcher/Performer architecture for the company. Which steps will be included in the Dispatcher process?

A.

1-3

B.

1-4

C.

3-4

D.

3-6

Full Access
Question # 5

A developer created a project in the Robotic Enterprise (RE) Framework. The Config.xlsx has the Asset entry shown in the exhibit:

Assuming the default REFramework configuration, how can the developer reference the Asset in the Config variable so that the dictionary returns the asset value as a String?

A.

Config("SME_EmailAddress").ToString

B.

Config("SME_EmailAddress","HR_EmployeeOnboarding_Text_SME_EmailAddress").ToString

C.

Config("HR_EmployeeOnboarding_Text_SME_EmailAddress").ToString

D.

Config("HR_EmployeeOnboarding_Text_SME_EmailAddress","SME_EmailAddress").ToString

Full Access
Question # 6

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.

Full Access
Question # 7

What do the Items in the Orchestrator queues consist of? Select all the options that apply.

Options are :

A.

Input data for the processes executed by the robots

B.

Processes to be executed by the robots

C.

Jobs to be executed by the robots

Full Access
Question # 8

The return value of the Get Transaction Item activity is of the following type:

Options are :

A.

String

B.

List

C.

Object

D.

QueueItem

Full Access
Question # 9

Which activity is used to call another piece of automation?

Options are :

A.

Open Application

B.

Invoke Workflow File

C.

Flowchart

Full Access
Question # 10

Review the following exhibit:

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

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.

Full Access
Question # 11

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?

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

Full Access
Question # 12

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

A.

Highlights the selected element from the Visual Tree in real time. The highlight stays on for 3 seconds.

B.

Brings the target element in the foreground. The button is enabled only if the selector is valid.

C.

Highlights the selected element from the Visual Tree in real time. The highlight stays on until it's switched off.

D.

Brings the target element in the foreground. The button is enabled only if the selector is invalid.

Full Access
Question # 13

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?

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.

Full Access
Question # 14

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?

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

Full Access
Question # 15

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?

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

Full Access
Question # 16

What are the differences between partial selectors and full selectors?

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.

Full Access
Question # 17

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?

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

Full Access
Question # 18

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.

Full Access
Question # 19

You have two variables, varA and varB, as shown in the following exhibit:

What is the output of the Write Line activity?

A.

246246

B.

123123246

C.

246123123

D.

123123123123

Full Access
Question # 20

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?

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".

Full Access
Question # 21

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?

A.

"SendWindowMessages" only

B.

"Default" and "SimulateType"

C.

"SimulateType" only

D.

"SimulateType" and "SendWindowMessages"

Full Access
Question # 22

When fine-tuning a dynamic selector, how many characters does "*" replace?

A.

Zero or more

B.

Exactly one

C.

One or more

D.

More than one

Full Access
Question # 23

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?

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.

Full Access
Question # 24

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?

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.

Full Access
Question # 25

A developer wants to create an attended automation process. The process will take information from emails in the current user's inbox.

Assuming the email/domain or password for the user's email inbox are not provided in the automation, which activity can be used to get unread emails with the subject line "Email for Robot"?

A.

Get Exchange Mail Messages

B.

Get POP3 Mail Messages

C.

Get Outlook Mail Messages

D.

Get IMAP Mail Messages

Full Access
Question # 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?

A.

Get Text

B.

Element Exists

C.

Select Item

D.

Type Into

Full Access
Question # 27

What represents an example of a full selector?

A.

B.

C.

D.

Full Access
Question # 28

A new blank project only has the Main.xaml file and consists of a single Throw activity. The activity is not enclosed in a Try Catch activity.

If this process is published and run from Orchestrator, what is the expected result?

A.

Exception Pop-up is displayed on the robot machine.

B.

Job is completed with a "Stopped" state.

C.

Job is completed with a "Successful" state.

D.

Job is completed with a 'Faulted" state.

Full Access
Question # 29

A developer needs to create an automation process that identifies a file with format "Monthly_Report_MMddyyyy.xlsx". The file name is saved to a variable called strinput.

To extract the date from strinput, which string manipulation method should be used?

A.

strinput.Substring(strInput.LastIndexOf("_")+1,8)

B.

strinput.Substring(strInput.IndexOf("_")+1,strInput.IndexOf(".")−1)

C.

strinput.Substring(strInput.IndexOf("_")+1.8)

D.

strinput.Substring(strInput.IndexOf("_")+1,strInput.IndexOf("."))

Full Access
Question # 30

A developer has created a project to scrape structured data from Service Desk tickets. Upon review, the developer discovered that the Extract Structured Data activity was set to retrieve 50 results. The activity needs to be updated to retrieve all available results.

From the drop-down list shown in the exhibit, select the correct value that should be used to update the MaxNumberOfResults property.

Full Access
Question # 31

A developer used title='1 writtenNotes - Notepad' as an attribute of a selector. The first character of the Notepad file name changes dynamically based on the .txt file used to open the file.

If the developer wants the selector to identify the Notepad by everything but the first character, how should title

be replaced?

A.

title='* writtenNotes - Notepad'

B.

title='? - Notepad'

C.

title='? writtenNotes - Notepad'

D.

title='* - Notepad'

Full Access
Question # 32

Review the following exhibits:

Based on the exhibits, what is the output of the sequence?

A.

A2X9k

B.

A1bx3

A1bx3

C.

A1bx3

A2X9k

D.

A2X9k

A2X9k

Full Access
Question # 33

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?

A.

Library

B.

Iterative Process

C.

Transactional Process

D.

Linear Process

Full Access
Question # 34

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?

A.

DelayAfter

B.

WaitForReady

C.

DelayBefore

D.

DelayBetweenKeys

Full Access
Question # 35

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

A.

State Machine

B.

Global Exception Handler

C.

Flowchart

D.

Sequence

Full Access
Question # 36

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?

A.

Breakpoints Panel

B.

Locals Panel

C.

Watch Panel

D.

Immediate Panel

Full Access
Question # 37

A developer created an attended process which used UI Automation activities on hidden or minimized windows. While the process is running on the user's machine, the user also needs the ability to use the machine.

Which activity is configured by default to enable interaction with hidden or minimized windows?

A.

Type Secure Text

B.

Click

C.

Set Text

D.

Hover

Full Access
Question # 38

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?

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

Full Access
Question # 39

A developer automates a process which has an Excel file as input data. Because the Orchestrator is not connected, the developer needs to adapt the Robotic Enterprise (RE) Framework to use it with tabular data.

Where in the REFramework is it a best practice to read the data from the Excel file and store it in a global DataTable variable?

A.

In a new state in the Main state machine, immediately after the Initialization state

B.

In the Initialization state in the First Run sequence

C.

In the InitAllApplications.xaml workflow

D.

In the Process Transaction state

Full Access
Question # 40

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?

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.

Full Access
Question # 41

You are invoking a workflow file called SecondaryWorkflow.xaml from PrimaryWorkflow.xaml. The following shows the Import Arguments panel of the Invoke Workflow File activity:

In addition, the following reflects the Arguments panel in SecondaryWorkflow.xaml:

You use a Log Message activity in "SecondaryWorkflow.xaml" to print the value of the argument "in_WelcomeMessage".

What is the expected result of executing "PrimaryWorkflow.xaml"?

A.

Log message "Hi, I reside at the Secondary file"

B.

Log message "Hi, I am passed from the Primary file"

C.

A System.InvalidCastException is thrown at the Invoke Workflow File activity

D.

A System.ArgumentException is thrown at the Invoke Workflow File activity

Full Access
Question # 42

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?

A.

DataSet.Tables(0).TableName

B.

DataSet.Tables(1).TableName

C.

DataSet.Rows(0).TableName

D.

DataSet.Rows(1).TableName

Full Access
Question # 43

A developer was reviewing an Orchestration process whose "main" attribute is set to Main.xaml in project.json.

However, the process is not pausing as intended. What is a possible cause for this issue?

A.

UI activities were not used in the process.

B.

"Wait for Form Task and Resume" activity was called in Main.xaml.

C.

Process created a task in the Orchestrator.

D.

"Wait for Form Task and Resume" activity was called in GetApproval.xaml.

Full Access
Question # 44

What is the difference between a Click activity whose SimulateClick property is checked and another one with the same property unchecked?

Options are :

A.

The activity with an enabled SimulateClick flag does not click the target element, it just simulates the action.

B.

The activity with the SimulateClick flag unchecked moves the mouse cursor over the target element, while the one with the flag set does not move the mouse cursor.

C.

There is no difference - both can be used in same scenarios.

Full Access
Question # 45

In the UiPath Robotic Enterprise Framework template, if a System Error is encountered in the Process Transaction state of the Main workflow, which state is executed next?

Options are :

A.

Get Transaction Data

B.

Init

C.

End Process

Full Access
Question # 46

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 on the Work items menu item. Scrape the data in all the pages of the table, page by page, ensuring error handling and recovery.

3. For each page:

- Filter the records where Status is 'Open';

- Filter the records where Type is 'WI5';

- Filter the records where WIID is less than 500000;

- Append the resulting datatable 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 String. The process should recover and retry in case of errors in navigation between WorkItems page. One transaction is the action of scraping one web page.By navigating to the next page, the next transaction will execute. (Same as ACME Process 4 Dispatcher 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.

3. Add the ACME_URL and ACME_Credential to the Config file.

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

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

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

7. Populate the Process.xaml file with the following actions: Web scraping, Filtering and 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.

Good luck!

Options are :

ALL THE BEST!

Full Access
Question # 47

In which workflow in the UiPath Robotic Enterprise Framework template is the TransactionNumber global variable incremented by default?

Options are :

A.

Process workflow

B.

GetTransactionData workflow

C.

SetTransactionStatus workflow

Full Access
Question # 48

What is the best way to select a row with a certain value from a column in Excel?

Options are :

A.

Use a Read Range Activity to retrieve the contents of the Excel file, and then use a For Each activity loop to iterate through the data and identify

B.

Use a Read Range Activity to retrieve the contents of the Excel file, and then use a Select Method to identify the desired row

C.

Use the Find functionality from Excel

Full Access
Question # 49

How can a string variable called myString be converted to an all-capitals representation for future use?

Options are :

A.

By using a Write Line with the Text property set to myString.ToUpper.

B.

By using an Assign activity with myString on the left side and myString.ToUpper on the right side

Full Access
Question # 50

A developer has configured the Activity Project Settings for UI automation and a Click activity as shown below. What will be the result of executing the Click activity in Run mode?

A.

Click activity will be executed by the default hardware method.

B.

Click activity will be executed using SimulateClick method.

C.

Click activity will be executed using SendWindowMessages method.

D.

An error will be thrown.

Full Access
Question # 51

What happens if the result of a transaction is not set?

Options are :

A.

The status is "In Progress" for 24 hours, and then it switches to Abandoned

B.

It is automatically set to Failed after 24 hours

C.

It is automatically set to Successful after 24 hours

Full Access
Question # 52

Is it possible to reprocess a transaction in a Queue after its failure due to

an application exception?

Options are :

A.

No, transactions cannot be processed again if they fail.

B.

Yes, if the Auto-Retry property of the Queue is enabled.

C.

Only transactions that failed due to a business exception can be reprocessed.

D.

Yes, it can be retried manually on the Transactions page.

Full Access