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

UiPath UiPath-ADPv1 UiPath (ADPv1) Automation Developer Professional Exam Exam Practice Test

Demo: 55 questions
Total 188 questions

UiPath (ADPv1) Automation Developer Professional Exam Questions and Answers

Question 1

What is the functionality of the Include Subfolders filter in the Monitoring pages when a modern folder is selected?

Options:

A.

It allows you to choose between background and foreground processes for the displayed data.

B.

It allows you to select whether the contents of the selected folder's subfolders are displayed.

C.

It enables you to sort the displayed data based on job priorities.

D.

It allows you to allocate licenses per machine for the displayed data.

Question 2

Considering that the attached table is stored in a variable called "dt":

Which LINQ query can be used to return the maximum total Quantity?

Options:

A.

dt.AsEnumerable. Max(Function(x) Convert.ToInt32(x("Quantity").ToString))

B.

dt.AsEnumerable. Max(Function(x) Convert.ToInt32(x("Quantity").ToString))("Item")

C.

dt.AsEnumerable. GroupBy(Function(x) x("Item").ToString). Max(Function(x) x.Sum(Function(y) Convert.ToInt32(y("Quantity").ToString)))

D.

dt.AsEnumerable. OrderByDescending(Function(x) Convert.ToInt32(x("Quantity").ToString)). First.Item("Quantity")

Question 3

What is the default polling interval set for an event trigger?

Options:

A.

1 minute

B.

5 minutes

C.

10 minutes

D.

15 minutes

Question 4

When developing a process, you were provided with two data tables, "DT1" and "DT2", as shown below:

The process documentation specifies that the two data tables need to be manipulated in order to reflect the following "DT2":

How should the properties of the Merge Data Table activity be configured?

A)

B)

C)

D)

Options:

A.

Option A

B.

Option B

C.

Option C

D.

Option D

Question 5

When building automation projects, which statement is true regarding Perform Remote Debugging?

Options:

A.

Perform Remote Debugging is only possible when the automation project does not involve Orchestrator queues and assets.

B.

Perform Remote Debugging enables developers to design new III elements for the automation project.

C.

Perform Remote Debugging refers to the process of testing and debugging an automation project on the same machine where UiPath Studio is installed.

D.

Perform Remote Debugging allows developers to debug a project on a different machine using a web-based interface.

Question 6

A developer wants to add items to a list of strings using the Invoke Method activity. The list is declared as follows:

The Invoke Method includes the following properties:

The Invoke Method includes the following properties:

Based on the exhibits, what is the outcome of this Invoke Method activity?

Options:

A.

Colors will contain items in the following order: "Yellow", "Red", "Green".

B.

Colors will contain items in the following order: "Red", "Green".

C.

Invoke Method activity will throw an error.

D.

Colors will contain items in the following order: "Red", "Green", "Yellow".

Question 7

A developer has defined a variable named "CurrentDate" of type Date Time. Which of the following expressions can be used to show what hour was 12 hours prior to the date

from the variable?

Options:

A.

DateTime.AddHours(CurrentDate, -12).Hour

B.

CurrentDate.AddHours(-12).Hour

C.

CurrentDate.SubtractHours(12).Hour

D.

DateTime.SubtractHours(CurrentDate, 12).Hour

Question 8

What does Application Exception describe?

Options:

A.

An error rooted in a technical issue, such as an application that is not responding.

B.

An error caused by using different data types than the expected ones in an application.

C.

An error that occurs when the application is running on unstable environment.

D.

An error rooted in the fact that certain data which the automation project depends on is incomplete or missing.

Question 9

Where is the TransactionNumber incremented in the REFramework?

Options:

A.

Only in the RetryCurrentTransaction.xaml workflow.

B.

Only in the SetTransactionStatus.xaml workflow.

C.

In the New Transaction transition.

D.

In the RetryCurrentTransaction.xaml workflow and in the SetTransactionStatus.xaml workflow.

Question 10

Once "Library A" has been imported as a dependency in the current project, how can the UI Object Repository defined in "Library A" be accessed?

Options:

A.

The Object Repository will automatically be available in the Process.

B.

The Object Repository needs to be exported as a UI Library and imported in the Process for it to become available.

C.

The Object Repository is only available in a Library.

D.

The Object Repository cannot be passed between a Process and a Library.

Question 11

A developer intends to enter text into an input field using a combination of a string and a hotkey. The input action should take place within a hidden or minimized window.

Which input method(s) can be used individually for the Type Into activity?

Options:

A.

Window Messages only.

B.

Simulate only.

C.

Same as App/Browser and Simulate.

D.

Simulate and Window Messages.

Question 12

When creating a new test case, which option restricts dynamic data update in UiPath Orchestrator once the test case is published?

Options:

A.

Test Data Queue

B.

Data Service with Filter

C.

File

D.

Data Service

Question 13

What is the main function of the UiPath Remote Runtime component?

Options:

A.

It facilitates the communication between a remote application or desktop and the dedicated UiPath extension, allowing selectors to be natively generated in UiExplorer.

B.

It enables the use of OCR and image recognition activities on remote applications or desktops, without any extensions, allowing selectors to be natively generated in UiExplorer.

C.

It introduces support for headless browser automation, so browser automation doesn't necessarily have to rely on visual elements on screen, such as window frames.

D.

It allows automations to run on the user machine, in a different Windows session.

Question 14

A developer has created a string array variable as shown below:

UserNames = {"Jane", "Jack", "Jill", "John"}

Which expression should the developer use in a Log Message activity to print the elements of the array separated by the string ","?

Options:

A.

String.Concat(UserNames,",")

B.

String.Join(UserNames, ", ")

C.

String.Join(", ", UserNames)

D.

String.Concat(",", UserNames)

Question 15

In the Global Exception Handler, which arguments are provided by default and should not be removed?

Options:

A.

errorinfo with the “Out" direction result with the “In/Out" direction

B.

errorinfo with the “In" direction result with the *ln/Ouf direction

C.

errorinfo with the “In" direction result with the "In" direction

D.

errorinfo with the “In" direction result with the "Out" direction

Question 16

What are the three main components of UiPath Integration Service?

Options:

A.

Connectors, API Tokens, Triggers.

B.

Connectors, Connections, Orchestrator.

C.

Connectors, Connections, Triggers.

D.

Activities, Connections, Triggers.

Question 17

Review the following graphics:

If the automation is executed and Notepad.exe is not running, which Log Message text value is contained in the Output panel?

Options:

A.

Exception

B.

ApplicationNotFoundException

C.

Try

D.

SelectorNotFoundException

Question 18

Which of the following statements correctly illustrates using LINO to process data in a UiPath project?

Options:

A.

Utilizing LINQ to find the total sum of integers in a list by writing listOfintegers.Sum(Function(x) x).

B.

Applying LINO to filter out emails in a list of strings containing multiple email addresses by writing listOfStrings.FilterEmails().ToList()

C.

Employing LINO to convert DataTable to JSON format by writing dataTable.ToJSONf)

D.

Using LINQ to identify the longest string in a list of strings by writing listOfStrings.Max(Function(x) x.Lengthl))

Question 19

A project built using REFramework pulls phone numbers from a database of employees and creates queue items for each one. Following processing, these elements must be added to a financing application. The queue item holding a phone number becomes invalid if a digit is accidentally left out because of a human mistake. As a requirement, queue items that contain partial numbers should not be accepted.

What type of error should be thrown according to best practices?

Options:

A.

Business Exception

B.

Application Exception

C.

Fatal Exception

D.

System Exception

Question 20

Why is it necessary to add the UiPath virtual channel to the allow list policy for Citrix Virtual Apps and Desktops 7 2109?

Options:

A.

Because the UiPath Remote Runtime component should be enabled to access the Citrix workspace environment.

B.

Because custom virtual channels are blocked by default, preventing the UiPath Remote Runtime from functioning correctly

C.

Because the network latency should be decreased and the performance of UiPath automation processes on Citrix should be improved.

D.

Because a secure connection should be created between the UiPath Remote Runtime and the Citrix receiver

Question 21

What actions must be manually selected in the App/Web Recorder before recording a step?

Options:

A.

Click on buttons, links, and other clickable elements such as icons or images.Type text in a text area such as a text box.Select or clear a check box.Send keyboard shortcuts using your keyboard.Select an item from a drop-down.

B.

Select or clear a check box.Send keyboard shortcuts using your keyboard.Select an item from a drop-down.

C.

Copy text using the Get Text activity.Hover over an element using the Hover activity.Highlight an element using the Highlight activity.

D.

Copy text using the Get Text activity.Hover over an element using the Hover activity.Click on buttons, links, and other clickable elements such as icons or images.Type text in a text area such as a text box.Select or clear a check box.

Question 22

A developer wants to add items to a list of strings using the Invoke Method activity. The list is declared as follows:

The Invoke Method activity has the following properties:

The Parameters property is as follows:

Based on the information shown in the exhibits what is the outcome of the Invoke Method activity?

Options:

A.

An exception will be thrown.

B.

Colors will contain an item with the value "Yellow".

C.

Colors will contain an item with an empty value.

D.

Colors will contain an item with the value "Colors: Yellow".

Question 23

The provided exhibit displays the representation of the "Deadline" field using the yyyy-mm-dd format.

In what order should the Queue Items be processed by a single robot executing a Performer workflow?

Options:

Question 24

What is the output type returned when using a Get Test Data Queue Item activity?

Options:

A.

Queueltem

B.

Object

C.

Dictionary

Question 25

Which of the following describes the correct hierarchy of the elements in the Object Repository tree structure?

Options:

A.

Version, Application, Screen, Ul Element.

B.

Application, Version, Screen, Ul Element.

C.

Application, Screen, Ul Element, Version.

D.

Screen, Application, Version, Ul Element.

Question 26

A developer designed a project in the REFramework. The "Config.xlsx" has me following Setting entry:

Assuming the default REFramework configuration, how can the developer reference the Setting in the Config variable to obtain the Setting value as a String from the dictionary?

Options:

A.

Config (“OrchestratorOueueName"." Process ABCQueue" )ToString

B.

Config (“OrchestratorOueueName ).ToString

C.

Config (“ProcessABCQueue"."OrchestratorQueueName").ToString

D.

Config (“ProcessABCOueue")ToString

Question 27

What is a prerequisite for performing Remote Debugging using an Unattended Robot connection?

Options:

A.

Studio and the remote robot have the same version.

B.

TCP/IP connectivity exists between the Studio machine and the remote machine

C.

The same user must be signed in Studio and the remote robot.

D.

Studio and the remote robot must be connected to the same Orchestrator tenant.

Question 28

An error occurs during the Initialization state within the ■’FrameworkMnitAIISettings.xaml” file for a process using REFramework which is executed on Orchestrator. The project contains default values for the settings specified in "Config.xlsx".

What is the current state of the job in Orchestrator?

Options:

A.

Successful

B.

Faulted

C.

Suspended

D.

Stopped

Question 29

At indication time, the Strict Selector has the following functionalities available:

Options:

A.

Refresh, Open in UiExplorer, Copy to clipboard.

B.

Ignore text. Copy to clipboard. Show all matches.

C.

Open in UiExplorer, Copy to clipboard, Show all matches.

D.

Accuracy, Open in UiExplorer, Copy to clipboard. Show all matches.

Question 30

What is the purpose of the Capture All Elements feature in Object Repository?

Options:

A.

To capture the selected elements of an application from multiple screens simultaneously using the Computer Vision technology.

B.

To capture the selected elements of an application using the Computer Vision technology.

C.

To capture all the available elements of an application using the Computer Vision technology.

D.

To capture all elements of an application from multiple screens simultaneously using the Computer Vision technology.

Question 31

In a UiPath development scenario, which type of process design would be the most appropriate for an automation task that executes actions in a straightforward progression without iteration or branching?

Options:

A.

Transactional Process

B.

Iterative Process

C.

Sequential Process

D.

Linear Process

Question 32

Which of the following best describes the Alerts panel?

Options:

A.

A panel that displays a more comprehensive list of all alerts.

B.

A panel that displays summaries of the alerts you subscribed to, received as error reports every ten minutes, or as daily reports.

C.

A panel that displays alerts as they occur.

D.

A panel that displays the most severe five alerts, accessible from the Alerts bell.

Question 33

Which of the following is a tag in a selector?

Options:

A.

id='selMonth'

B.

aaname='FirstName'

C.

D.

class-down-chevron set-font'

Question 34

Which activity Is specific tor Ul synchronization in UlPath Studio?

Options:

A.

Get Processes

B.

Use Applicationy/Browser

C.

Check App State

D.

Process Start Trigger

Question 35

What is the default OCR engine used in CV Screen Scope?

Options:

A.

UiPath Screen OCR

B.

Microsoft OCR

C.

Tesseract OCR

D.

Microsoft Azure Computer Vision OCR

Question 36

In the context of a UiPath State Machine, what is the primary purpose of the Exit action in a state?

Options:

A.

To manually stop the state machine's execution.

B.

To execute the final actions of the current state before transitioning to the next stage.

C.

To revoke any entry actions performed when entering the current state.

D.

To define the conditions upon which a state transition should occur.

Question 37

In a UiPath REFramework project, what is the primary purpose of using Custom Log Fields?

Options:

A.

To maintain contextual insights within log messages, including secure details like credentials.

B.

To add specific contextual information to log messages that are relevant to the automation process.

C.

To modify the representation of logged contextual data as it is displayed in the Orchestrator.

D.

To generate extra variables alongside log messages, enhancing workflow understanding.

Question 38

Which of the following examples accurately demonstrates the correct usage of Al Computer Vision features in a UiPath project?

Options:

A.

Employing Al Computer Vision to identify and interact with Ul elements in a remote desktop application with low quality or scaling issues.

B.

Utilizing Al Computer Vision to train a custom machine learning model to recognize specific patterns in data.

C.

Using Al Computer Vision to extract plain text from a scanned PDF document and store the output in a string variable.

D.

Applying Al Computer Vision to perform sentiment analysis on a provided text string and displaying the result.

Question 39

In UlPath Orchestrator. when managing multiple Jobs in a queue, which feature allows operators to dictate the execution sequence by assigning the importance of each Job?

Options:

A.

Job Execution Order

B.

Job Queuing Strategy

C.

Jab Dependency Settings

D.

Job Priority Levels

Question 40

What are the differences between the properties Input mode: Simulate and Input mode: Window Messages on a Type Into activity?

Options:

A.

Input mode: Simulate is the fastest and supports hotkeys.Input mode: Window Messages is compatible with all applications.

B.

Input mode: Simulate is compatible with all applications.Input mode: Window Messages runs in the background and auto-empties the field.

C.

Input mode: Simulate runs in the background and auto-empties the field.Input mode: Window Messages supports hotkeys.

D.

Input mode: Simulate works best with web applications.Input mode: Window Messages is the fastest and supports hotkeys.

Question 41

What is the purpose of credential stores in UiPath Orchestrator?

Options:

A.

To store non-sensitive data and configuration settings for UiPath Studio projects.

B.

To store Orchestrator event loos and related data for auditing purposes.

C.

To securely store sensitive data such as Robot credentials and Credential Assets for use in automation processes.

D.

To serve as a centralized location for storing pre-built automation workflows and processes.

Question 42

How are mock files organized in an automation project structure?

Options:

A.

They are stored in a dedicated folder for mock testing configuration.

B.

They are stored in a separate folder called "Mocks".

C.

They are stored in the same folder as the source workflow.

D.

They are stored in a nested structure based on the source workflow's file tree.

Question 43

What are the primary functions of the UiPath Integration Service?

Options:

A.

Enables automation with a library of connectors, manages connections easily with standardized authentication, kicks off automations with server-side triggers or events, provides curated activities and events, simplifies automation design.

B.

Automates Ul design, manages API connections, provides limited activities and events, simplifies automation design.

C.

Enables automation with API integration, manages connections with user-provided authentication, kicks off automations based on application-specific triggers, simplifies automation design with the help of third-party libraries.

D.

Enables automation with Ul components, manages API keys, kicks off automations with client-side triggers, provides curated events.

Question 44

How can UlPath Orchestrator help address potential Issues before they become critical problems?

Options:

A.

By sending customer feedback to UiPath developers.

B.

Through proactive monitoring and alerting of detected issues

C.

With immediate technical support for any detected Issue.

D.

By automatically updating background processes.

Question 45

Assume we have the Verify Expression with Operator activity from the UiPath. Testing.Activities package with the properties configured as follows:

The activity is used within a Try-Catch activity. The Catch block is set to System.Exception and UiPath.Testing.Exception.TestingActivitiesException as shown in the screenshot below:

During the execution of the sequence shown above, which block from the Try-Catch activity will be entered first, after the Verify Expression with Operator activity is executed?

Options:

A.

None of the other blocks within the Try-Catch activity will be executed.

B.

The Finally block within the Try-Catch activity.

C.

The Exception sequence from the Catches block within the Try-Catch activity.

D.

The TestingActivitiesException sequence from the Catches block within the Try-Catch activity.

Question 46

A developer has created a variable of type String called "MyNumbers" and assigned to it the following value: "1. 2, 3.4, 5. 6". What is the resulting data type for the expression MyNumbers.Split("."c)(1)?

Options:

A.

Array of String

B.

String

C.

Double

D.

lnt32

Question 47

What specific combination of permissions is required to disable errors from the Error Feed widget on the Monitoring > Jobs page in UiPath Orchestrator Monitoring-7

Options:

A.

View on Monitoring and Edit on Jobs.

B.

Edit on Monitoring and View on Jobs.

C.

Edit on Monitoring and Edit on Jobs.

D.

View On Monitoring and View on Jobs.

Question 48

Following UiPath best practices, which project structure is best-suited for complex processes in UiPath Studio?

Options:

A.

Sequence

B.

Flowchart

C.

Global Exception Handler

D.

State Machine

Question 49

What are the five severity levels of Orchestrator alerts?

Options:

A.

Info, Success, Warn, Error, Fatal.

B.

Info. Success. Warning. Error. Critical.

C.

Information, Complete. Warning, Error, Failure.

D.

Info, Completed. Warning, Error. Fatal.

Question 50

A developer wants to create an automation in which the input from the user and pre-defined conditions determine the transition between stages. In UiPath Studio, which is the recommended type of workflow that meets the requirement?

Options:

A.

Flowchart

B.

Workflow

C.

State Machine

D.

Global Exception Handler

Question 51

Which LINQ method is used to filter data in a List or DataTable based on a condition?

Options:

A.

Select

B.

GroupBy

C.

OrderBy

D.

Where

Question 52

When developing a new project using REf ramework. logging in to multiple applications Is required. What is the recommended location to accomplish this task?

Options:

A.

InitAIIApplicatlons.xaml

B.

InitAIISettings.xaml

C.

Process.xaml

D.

FirstRun.xaml

Question 53

In a UlPath State Machine, what Is the primary function or the Trigger section of a State activity?

Options:

A.

To execute the final state actions before terminating the state machine.

B.

To specify the condition or event that initiates a transition from the current state

C.

To define the entry actions when transitioning into a state.

D.

To establish the exit actions when moving out of a state.

Question 54

A developer Intends to incorporate a Flow Switch activity within a Flowchart. What Is a characteristic of this activity?

Options:

A.

The Flow Switch activity is designed solely for usage in sequence workflows.

B.

Two default cases can be assigned in the Default section

C.

The default TypeArgument property for the Flow Switch activity is set lo Int32.

D.

Default cases can be numbered.

Question 55

In an RPA Testing project, you created the mock "MySequencemock" for the file "MySequence". You have to update "MySequence" and add a Log Message activity and a

Verify Expression activity.

What will happen to "MySequencemock" file when you save the project, assuming that the file is closed?

Options:

A.

Only the Verify Expression activity will be added to the mock file.

B.

The changes made in "MySequence" workflow file are applied to the mock file.

C.

Only the Log Message activity will be added to the mock file.

D.

The changes made in "MySequence" workflow file are not applied to the mock file.

Demo: 55 questions
Total 188 questions