Skip to main content

UIPATH-ARDV1 Real Exam Questions

UiPath Advanced RPA Developer v1.0 (UiARD)

447 questions available · Page 1 of 45

Updated Exam DumpsVerified AnswersPass Guarantee

Get Complete Exam Dumps
Question 1 Single choice

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?

  1. A

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

  2. B

    In the Initialization state in the First Run sequence

  3. C

    In the InitAllApplications.xaml workflow

  4. D

    In the Process Transaction state

Show answer and explanation

Correct answer: B

Explanation

References:
https://dotnetbasic.com/2019/06/re-framework-uipath-interview-questions.html

Question 2 Single choice

st.uipath.com/work-items webYou want to automate a process on the https://acme-test.uipath.com/work-items web page.

On this page, the following table is displayed:

You observe that the selector of the element highlighted in red is:

<html app='chrome.exe' title='ACME System 1-Work Items' />
<webctrl tag='TABLE' />
<webctrl tag='TD' tableCol='2' tableRow='2' />

What is a valid selector to get the 5-th element in the WIID column?

  1. A

    <html app='chrome.exe' title='ACME System 1 - Work Items' />
    <webctrl tag='TABLE' />
    <webctrl tag='TD' tableCol='4' tableRow='2' />

  2. B

    <html app='chrome.exe' title='ACME System 1 - Work Items' />
    <webctrl tag='TABLE' />
    <webctrl tag='TD' tableCol='2' tableRow='5' />

  3. C

    <html app='chrome.exe' title='ACME System 1 - Work Items' />
    <webctrl tag='TABLE' />
    <webctrl tag='TD' tableCol='2' tableRow='4' />

  4. D

    <html app='chrome.exe' title='ACME System 1 - Work Items' />
    <webctrl tag='TABLE' />
    <webctrl tag='TD' tableCol='5' tableRow='2' />

Show answer and explanation

Correct answer: B

Question 3 Drag & drop

DRAG DROP

A developer is automating a project for the Finance team. As defined in the Process Definition Document, the robot is required to log the completion of each step with the documented corresponding Log Level.

If Fatal is the highest Log Level severity for the UiPath Log Message activity, what is the correct priority sequence, from the lowest to the highest severity, of the remaining Log Levels?

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

Question diagram
Show answer and explanation
Correct answer diagram
Question 4 Drag & drop

DRAG DROP

A developer uses multiple Log Message activities with different Log Levels in the workflow.

What is the correct severity sequence, from the lowest to the highest, for the Log Levels of a Log Message activity?

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

Question diagram
Show answer and explanation
Correct answer diagram
Question 5 Single choice

A developer needs to automate a process using UI Automation. A subset of the Step-by-Step Guide in the PDD (Process Design Document) is:

1. Navigate to the Vendors page
2. Click on "Add new vendor''
3. Fill in the form with the information such as name, address, country, description
4. Press "Submit"

What is the recommended type of workflow to use in order to automate this set of steps?

  1. A

    Global Exception Handler

  2. B

    Flowchart

  3. C

    State Machine

  4. D

    Sequence

Show answer and explanation

Correct answer: D

Question 6 Single choice

One of the steps in your process is to authenticate on a web application.

How can you check if the login succeeded or not?

  1. A

    Place the login activities inside a Try-Catch block. An exception is thrown in case a login problem occurs.

  2. B

    Use an Element Exist activity to check whether the login succeeded by searching for an element that is

    only displayed in that case.

  3. C

    Check the return value of the Login activity.

Show answer and explanation

Correct answer: B

Question 7 Single choice

A developer wants to filter the following datatable to get all rows with people from Canada younger than 50 years old who provided their email address.

Which expression provides the required results?

  1. A

    DataTable.Select("Country = ''Canada'' AND Age < 50 AND Email != ''")

  2. B

    DataTable.Select("[Country] = 'Canada' AND [Age] < 50 AND [Email] != ''")

  3. C

    DataTable.Select("[Country] = 'Canada' AND [Age] < 50 AND [Email] <> ''")

  4. D

    DataTable.Select("[Country] = 'Canada' && [Age] < 50 && [Email] <> ''")

Show answer and explanation

Correct answer: C

Explanation

To filter a datatable using .Select method, follow the rules:
1. Place column name in square brackets e.g. [Country] 2. Next, place a comparison sign (=, <=, >=, or <>) e.g. [Country] =
3. Place all string values in a single quotation ' ' e.g. [Country] = 'Canada' 4. Join all required conditions using keywords like AND, OR e.g. [Country] = 'Canada' AND [Age] < 50 AND
[Email] <> '' 5. Surround all conditions in double quotes " " and place the final string in brackets after .Select e.g. DataTable.Select("[Country] = 'Canada' AND [Age] < 50 AND [Email] <> ''")
Describe how to initialize variables such as lists and datatables, and how to filter datatables.

Question 8 Single choice

A developer is asked to create a new library project in UiPath Studio.

What describes a characteristic of a library project?

  1. A

    A library project is a package that must contain only a single reusable component.

  2. B

    A library project does not contain an entry point file.

  3. C

    A library project is saved as a zip file and used as a dependency in other processes.

  4. D

    A library project is a package that must contain multiple reusable components.

Show answer and explanation

Correct answer: D

Explanation

A library is a project which contains one or more workflows that can be reused as activities in other projects. Libraries are saved as NUPKG files when published and can be installed as dependencies from the Package Manager.

Question 9 Single choice

When should the Simulate Type/Click property be used?

  1. A

    Only when background automation is required

  2. B

    Whenever supported by the target application

  3. C

    Only for testing purposes

Show answer and explanation

Correct answer: B

Question 10 Single choice

What types of assets can be stored in Orchestrator?

  1. A

    Array, Datatable, Bool, String

  2. B

    Bool, String, Integer, Credential

  3. C

    Integer, Password, GenericValue, String

Show answer and explanation

Correct answer: B