Winter Special Limited Time 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: myex65

Home > UiPath > UiPath Certified Professional - Developer Track > UiPath-ADAv1

UiPath-ADAv1 UiPath Automation Developer Associate Exam (2023.10) Question and Answers

Question # 4

You want to identify a selector in a Type into activity that will be used for a text input field within an application. In order for the Type into activity to execute as expected, how many elements in an application can a selector be valid for at runtime?

A.

1 element

B.

2 elements

C.

3 elements

D.

5 elements

Full Access
Question # 5

Which of the following describes a role in UiPath Orchestrator?

A.

Roles are collections of machines used to control the devices users can access in the UiPath ecosystem.

B.

Roles are collections of permissions used to control the level of access and the actions users can perform in the UiPath ecosystem.

C.

Roles are collections of folders used to control the level of hierarchical organization within the UiPath ecosystem.

D.

Roles are collections of processes used to control the order in which users can execute processes in the UiPath ecosystem.

Full Access
Question # 6

Which of the following statements correctly describes the characteristics of Unattended Automation?

A.

Unattended Automations are automations that run under human supervision and are typically used for tasks requiring a clear audit chain.

B.

Unattended Automations are automations intended for more complex and highly repetitive tasks, usually performed in batches, and can be decided based on predefined rules.

C.

Unattended Automations are intended for smaller, fragmented tasks and run with user supervision, requiring the user's credentials for access.

D.

Unattended Automation are automations that run under human supervision and, because of this, are best suited for small tasks.

Full Access
Question # 7

Consider the following code involving a Try Catch:

What will be the output after running the code?

A.

"BRE caught", exception rethrown.

B.

"Exception caught".

C.

"Exception caught", "Finally executed".

D.

"BRE caught", exception rethrown, "Finally executed".

Full Access
Question # 8

A developer is using the Step Out action in Debug mode to review a process as shown in the following exhibit.

Which functionality does the Step Out action provide?

A.

Pauses at an activity that caused an error

B.

Re-executes the activity which threw an exception

C.

Executes only one activity at a time and then pauses

D.

Executes activities in the current container and then pauses

Full Access
Question # 9

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 ", "?

A.

String.Join(UserNames, ",")

B.

String.Join(", ", UserNames)

C.

String.Concat(UserNames,",")

D.

String.Concat(",", UserNames)

Full Access
Question # 10

A developer created three variables used in the workflow shown below:

Instructions: Based on best practices, select the correct Scope for each Variable type from the drop-down lists shown in the following exhibit.

Full Access
Question # 11

If you rename an activity that has an automatically generated output variable in a cross-platform project, how does it impact the generated variable?

A.

The generated variable is automatically renamed to match the new activity name.

B.

The generated variable is deleted when the activity is renamed.

C.

The renaming of the activity does not impact the generated variable.

D.

The generated variable loses its scope and must be redefined manually.

Full Access
Question # 12

What is the main difference between an array and a list in UiPath?

A.

An array is a fixed-size collection of elements of the same type while a list is a dynamic-sized collection of elements of the same type,

B.

An array is a dynamic-sized collection of elements of the same type while a list is a fixed-size collection of elements of the same type.

C.

An array is a fixed-size collection of elements of different types while a list is a dynamic-sized collection of elements of the same type.

D.

An array is a fixed-size collection of elements of the same type while a list is a dynamic-sized collection of elements of different types.

Full Access
Question # 13

When installing UiPath Studio, which of the following actions require administrator privileges?

A.

Administrator privileges are not required for installing UiPath Studio.

B.

Administrator privileges are required for installing the robot in both service mode and user mode.

C.

Administrator privileges are required for installing the robot in user mode.

D.

Administrator privileges are required for installing the robot in service mode.

Full Access
Question # 14

How can a user change the profile from UiPath Studio to UiPath StudioX from the backstage view?

A.

By going to Home - Settings - Design - Change profile and clicking on the UiPath StudioX profile, then clicking "Yes" when prompted to restart the application.

B.

By going to Home - Tools - Design - Change profile and clicking on the UiPath StudioX profile, then clicking "Yes" when prompted to restart the application.

C.

By going to Home - Settings - License and profile - Change profile and clicking on the UiPath StudioX profile, then clicking "Yes" when prompted to restart the application.

D.

By going to Home - Settings - Locations - Change profile and clicking on the UiPath StudioX profile, then clicking "Yes" when prompted to restart the application.

Full Access
Question # 15

A developer configured the properties for a Click activity on an element inside a web page as shown in the following exhibit.

An animation on the web page never completely loads but the element indicated in the Click activity does load within the specified timeout duration. What occurs when this Click activity executes?

A.

Element is clicked once the element is fully loaded.

B.

Timeout error occurs without clicking on the element.

C.

Waits 10 seconds before clicking on the element.

D.

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

Full Access
Question # 16

Which option best describes a process that is considered ZERO-TOUCH AUTOMATION?

A.

Processes where change is frequent, the system environment is volatile, and multiple manual (even non-digital) actions are required.

B.

Processes that are digital and involve a highly static system and process environment, so that they can be easily broken into instructions and simple triggers can be defined.

C.

Processes that can be broken down into steps that can be clearly automated, and steps that need to stay manual (such as validations or usage of physical security tokens).

D.

Processes that are rather digital and can be automated, but use some technologies that are complex (such as OCR) or require advanced programming skills.

Full Access
Question # 17

A developer created a data table called "DT" using the Build Data Table activity as shown in the exhibit.

What is the result of the expression, "DT.Rows(0)(1).ToString + DT.Rows(1)(0).ToString"?

A.

MichaelClara

B.

2542

C.

Michael42

D.

42Clara

Full Access
Question # 18

A developer implemented a process using the Robotic Enterprise Framework and an Orchestrator queue. The MaxRetryNumber from the "Config.xlsx" file is set to "1" and the Max # of retries from the Queue settings from Orchestrator is set to

"2". At runtime, the first transaction item throws a Business Exception.

How many times will the transaction be retried?

A.

The transaction will be retried only one time.

B.

The transaction will not be retried.

C.

The transaction will be retried 2 times.

D.

The transaction will be retried multiple times, until it will be processed successfully.

Full Access
Question # 19

A developer finished creating an automation project in UiPath Studio 2021 10 What is the recommended sequence of steps that should be performed to publish the package to Orchestrator 2021.10?

Instructions: Drag the Description found on the left and drop on the correct Step found on the right

Full Access
Question # 20

When encountering an ApplicationException, what occurs if the developer chooses InvalidOperationException as the exception handler within the Catches section of the Try Catch activity?

A.

The Finally block is executed and the Catches section catches the exception.

B.

A runtime error occurs and the Finally block is not executed.

C.

No exceptions are happening and the workflow continues to execute.

D.

No exception is thrown and the Finally block executes.

Full Access
Question # 21

When creating a new project in Studio Web with cross-platform compatibility, what language must be selected for expressions to ensure the project is cloud-compatible?

A.

VB

B.

C#

C.

Java

D.

Python

Full Access
Question # 22

What are the distinctions between arguments and variables?

A.

Variables pass data between activities inside the same workflow. Arguments pass data between workflow files.

B.

Variables always have a direction. Arguments can be assigned to a variable value.

C.

Variables pass data between workflow files. Arguments pass data between activities inside the same workflow.

D.

Variables must be assigned to an argument value. Arguments always have a direction.

Full Access
Question # 23

A developer has extracted the date "08-22-2022" from an invoice and stored it in a variable of type String called ExtractedDate. As part of the process, the developer needs to perform a comparison with a different date.

Which expression should be used to convert ExtractedDate to a DateTime type?

A.

ExtractedDate.Equals("08-22-2022")

B.

DateTime Parse(ExtractedDate)

C.

DateTime.Compare(ExtractedDate:08-22-2022")

D.

ExtractedDate GetType

Full Access
Question # 24

What is the main benefit of importing profiling sessions?

A.

Enables the analysis of potential flow issues.

B.

Provides context menu options for profiling actions.

C.

Disables focus on imported profiling sessions.

D.

Disables the analysis of potential flow issues.

Full Access
Question # 25

A developer created a data table called "DT" using the Build Data Table activity as shown in the exhibit.

What is the result of the expression, "DT.Rows(0)(1).ToString + DT.Rows(1)(0).ToString"?

A.

MichaelClara

B.

2542

C.

Michael42

D.

42Clara

Full Access
Question # 26

A developer wants to create a process using a Flow Switch activity. What is a feature of this activity?

A.

Supports up to three expressions by default

B.

Two Default cases can be defined

C.

Default case is executed before the expression is evaluated

D.

Default case is executed if no cases match the expression

Full Access
Question # 27

What variable type should the developer use to store the monetary amount read from a single cell in an Excel file, before inputting it into a field in a web application for the automation process?

A.

List

B.

Double

C.

DataRow

D.

Object

Full Access
Question # 28

What are the steps to publish a project from UiPath Studio?

Instructions: Drag the Description found on the "Left" and drop on the correct Step Sequence found on the "Right".

Full Access
Question # 29

Which logging level includes the following information by default?

1. Execution Started log entry - generated every time a process is started.

2. Execution Ended log entry - generated every time a process is finalized.

3. Transaction Started log entry - generated every time a transaction item is obtained by the robot from Orchestrator.

4. Transaction Ended log entry - generated every time the robot sets the transaction status to either Success or Failed.

5. Activity Information log entry - generated every time an activity is started, faulted or finished inside a workflow.

6. Arguments and Variables Information log entry - show values of the variables and arguments that are used.

A.

Critical

B.

Trace

C.

Verbose

D.

Information

Full Access
Question # 30

How should arguments be named according to best practices?

A.

The name should have a prefix stating the argument type.

B.

The name should contain the name of the workflow to which they are defined.

C.

The name must exactly match the variable name given in the Value field.

D.

The name should conclude with the direction and be comparable to the variable name provided in the Value.

Full Access
Question # 31

Based on best practice, which set of features are used before debugging a workflow in UiPath Studio?

A.

Execution Trail and Picture in Picture

B.

Analyze Project and Validate File

C.

Highlight Elements and Focus

D.

Ignore and Restart

Full Access
Question # 32

Which of the following workflow names is correct, based on best practices?

A.

Transactionstatus

B.

Workflow1

C.

creation_of_file

D.

ScrapeFilteredStocks

Full Access
Question # 33

You are working on an existing project that is connected to a GIT version control system Which Context menu option should be used to provide local versions of files to the remote repository?

A.

Pull (rebase)

B.

Push

C.

Set As Mam

D.

Show History

Full Access
Question # 34

Which Scraping method should be used for the Get Text activity to capture hidden text from an application?

A.

Text attribute

B.

Default

C.

Native

D.

Full text

Full Access
Question # 35

In order for a developer to utilize the default REFramework without relying on Orchestrator queues, what is the essential prerequisite to ensure that the project does not interact with Orchestrator?

A.

Omit the OrchestratorQueueName setting from the Config.xlsx file. Exclude the three SetTransactionStatus activities from the SetTransactionStatus workflow & change the variable type.

B.

Eliminate the Get Transaction Data state from the Main state machine. Exclude the Get Transaction Item activity from the project & change the variable type.

C.

Exclude the Get Transaction Item activity from the project. Eliminate the three SetTransactionStatus activities from the SetTransactionStatus workflow & change the variable type.

D.

Remove the Get Transaction Data state from the Main state machine. Remove the OrchestratorQueueName setting from Config.xlsx & change the variable type.

Full Access
Question # 36

Which database operations can be controlled with Application Access? (Choose 2 answers)

A.

Create

B.

Execute

C.

Update

D.

Query

Full Access
Question # 37

How can Folder roles be assigned in an Orchestrator instance where Activate Classic Folders is unchecked under Tenant > Settings > General?

A.

From the Roles tab of the Tenant > Manage Access page.

B.

From the Tenant > Settings > General page.

C.

From the Assign roles tab of the Tenant > Manage Access page

D.

From the Folders page or from the folder's Settings page

Full Access
Question # 38

When is the Anchor Base activity used to automate interaction with an application?

A.

When the element selector is reliable but the element's position on the screen changes

B.

When all the element selectors in the application are reliable

C.

When no element selectors are available in the automated application

D.

When the element selector is not reliable and the element's position on the screen changes

Full Access
Question # 39

Which activity should be used inside a Use Excel File scope to be able to sort a table directly in an ".xlsx" file?

A.

Get Table Range

B.

Sort Data Table

C.

Read Range

D.

Sort Range

Full Access
Question # 40

While working in an RPA testing project, you encountered the following activity in one of the workflows included in the project.

What action can you perform in your mocked file to replace the functionality of the MessageBox with a LogMessage during mock testing?

A.

Remove mock activity.

B.

Synchronize mock.

C.

Surround activity with mock.

D.

Create mock workflow.

Full Access
Question # 41

While working on a project that utilizes Object Repository, you have one linked UI Element that is used across multiple activities. What needs to happen to edit a selector for only one activity without modifying it in Object Repository?

A.

Edit target.

B.

Show in Object Repository.

C.

Indicate target on screen.

D.

Unlink from Object Repository.

Full Access
Question # 42

What activity should be used to iterate through a number of Outlook emails?

A.

For Each Row

B.

For Each Outlook Item

C.

For Each File in Folder

D.

For Each Email

Full Access
Question # 43

When configuring the Max # of retries for the queue in Orchestrator to "1" for your process, and the queue has 5 transaction items. At runtime, the first transaction item throws a Business Rule

Exception.

How does the process proceed?

A.

Transaction is not retried and the process stops.

B.

Transaction is not retried but remaining transactions continue processing.

C.

Transaction is retried only one time.

D.

Transaction is retried multiple times until processed successfully.

Full Access
Question # 44

What happens after executing the given sequence if the Work Items button appears on the screen after 8 seconds and the Retry Scope activity has the properties as shown in the picture?

A.

The Work Items button is being clicked.

B.

An exception is being thrown.

C.

Nothing happens.

D.

The Work Items button is being highlighted.

Full Access
Question # 45

A developer needs to create a process for the Human Resources team. During the development, they try to run the workflow containing the following dictionary variable: What is the possible cause of the error?

A.

The Dictionary was not initialized.

B.

The "John" key was not present in the dictionary.

C.

The assign's set value syntax should be PinMapping<"John">.

D.

The assign's set value syntax should be PinMapping["John"].

Full Access
Question # 46

A developer created a datatable, dt_Users as shown in the following exhibit.

After populating the datatable variable, the developer wants to assign each User ID in dt_Users to a List variable Users_List. To achieve this, the developer plans to use an Add To Collection activity inside a For Each Row activity.

How should the Item property of the Add To Collection activity be configured?

A.

CurrentRow(0)ToStnng

B.

CurrentRow(1) ToString

C.

dtJJsers(O) ToString

D.

dt_Users(1) ToString

Full Access
Question # 47

Which option best describes a process that is considered SEMI-AUTOMATION?

A.

Processes where change is frequent, the system environment is volatile, and multiple manual (even non-digital) actions are required.

B.

Processes that are digital and involve a highly static system and process environment, so that they can be easily broken into instructions and simple triggers can be defined.

C.

Processes that are rather digital and can be automated, but use some technologies that are complex (such as OCR) or require advanced programming skills.

D.

Processes that can be broken down into steps that can be clearly automated, and steps that need to stay manual (such as validations or usage of physical security tokens).

Full Access
Question # 48

A developer wants to assign the first row of the "ID" column in the "DT" datatable to a String variable. Which expression should be added to the Value field of the Assign activity?

A.

DTRows(0)ID

B.

DTRows(0). ltem("ID")

C.

DTColumns(0)ID

D.

DTColumns(0) ("ID")

Full Access
Question # 49

What status needs to be selected in the Set Transaction Status activity in UiPath Studio so that the respective Queue Item will be retried?

A.

Failed

B.

Retried

C.

Abandoned

D.

Postponed

Full Access
Question # 50

Which Control Flow activity is suitable for a developer who needs to assess the value of a counter before executing the loop's body in a workflow?

A.

Do While

B.

Switch

C.

)While

D.

If

Full Access
Question # 51

Which of the following statements must evaluate to true for a user to pass an Access Control? (Choose 3 answers)

A.

The user has one of the roles specified in the Required Roles related list.

B.

Other matching Access Controls for the record evaluate to true.

C.

Scripts configured in the Access Control must evaluate to true.

D.

Conditions configured in the Access Control must evaluate to true.

E.

The user must be granted access through a Business Rule.

Full Access
Question # 52

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?

Full Access
Question # 53

Which property of the Check App State activity in UiPath is used to define the maximum wait time for the application state to change?

A.

WaitTime

B.

RetryInterval

C.

Timeout

D.

Delay

Full Access
Question # 54

In a UiPath project that uses State Machines, under what circumstances should the Final State activity be used in the project?

A.

When initiating the first state of a state machine.

B.

When marking the successful completion or termination of a state machine's execution.

C.

When a particular state contains complex conditional logic.

D.

When an intermediary state has multiple possible transitions.

Full Access
Question # 55

What is the correct sequence of steps to perform when trying to pass and get data from an invoked workflow in Main.xaml?

Instructions: Drag the Description found on the left and drop on the correct Step Sequence found on the right.

Full Access
Question # 56

A developer needs to create a workflow that manipulates items related to invoices inside a web application. The following selector represents a UI element inside an invoice

represented by an 8-alphanumeric system-generated vendor tax ID.

Assuming only the Vendor Tax ID value changes in the selector, what represents an example of a good selector that matches only specific invoices with the vendor tax ID

defined in a pre-selected existing list?

A.

Where VendorTaxID is a 8-alphanumeric element.

B.

Where VendorTaxID is a 8-alphanumeric element.

C.

Where VendorTaxID is a 8-alphanumeric element.

D.

Where VendorTaxID is a 8-alphanumeric element.

Full Access
Question # 57

Which two parts are included in an Anchor Base activity?

A.

Anchor and Action

B.

Anchor and Condition

C.

Anchor and Trigger Scope

D.

Anchor and Sequence

Full Access
Question # 58

What are the steps to start building a custom connector using the Connector Builder for Integration Service?

A.

Open UiPath Studio, create a new process, on the Connectors tab, select Add a new Connector, choose to start from an API definition or from a blank connector.

B.

Open Automation Cloud, go to Integration Service, on the Connectors tab, select Add a new Connector, choose to start from an API definition or from a blank connector.

C.

Open Automation Cloud, go to Orchestrator, on the Connections tab, select Add a new Connection, choose to start from an API definition or from a blank connector.

D.

Open Automation Cloud, go to Orchestrator, on the Connectors tab, select Add a new Connector, choose to start from an API definition or choose OAuth 2.0 authentication method.

Full Access
Question # 59

Which of the following statements is true about Global Variables?

A.

Global Variables values can be modified during the automation execution.

B.

Global Variables can be created from the Data Manager panel and from the Variables panel.

C.

Global Variables can be accessed only from the Main workflow.

D.

Global Variables have a Direction properly (In/Out).

Full Access
Question # 60

Which of the following statements is true?

A.

UiPath Robots can be deleted if they have pending or active jobs in UiPath Orchestrator.

B.

Unattended robots can be connected to UiPath Orchestrator without the Windows username.

C.

UiPath Orchestrator consumes the Queue Items uploaded to the UiPath Robot.

D.

Attended robots can be connected to UiPath Orchestrator without Windows Credentials.

Full Access
Question # 61

How many Global Exception Handlers can be established per automation project, according to best practices?

A.

A single one for the entire project.

B.

There is no limit.

C.

One for each workflow in the project.

D.

One for each activity in the project.

Full Access
Question # 62

Consider testing a workflow that computes the sum of two numbers having the data driven test data from the Excel file below:

Expanding the functionality of the workflow to compute the sum of three numbers, the data needs to be updated as well to accommodate the new scenario:

What are steps to do that?

A.

Click Right on the Test Case and select Update Test Data.

B.

Click Right on the Test Case and select Add Test Data.

C.

Click Right on the Test Case and select Remove Test Data.

D.

Click Right on the Test Case and select Refresh Test Data.

Full Access
Question # 63

Where can you find a list of all the activities that support the Windows compatibility?

A.

In the converted project's settings.

B.

In the Official feed documentation.

C.

In the Activities Guide.

D.

In the Windows-Legacy project configuration.

Full Access
Question # 64

What is enabled by connecting UiPath Studio to Orchestrator?

A.

Publishing automation packages to Orchestrator.

B.

Defining queues and arguments for use in automations.

C.

Generating API keys for use in integrations with third party apps.

D.

Creating an Object Repository of elements for use in automations.

Full Access
Question # 65

To read only the first page of a .pdf file using the Read PDF Text activity, what value should be entered into the Range property?

A.

"1"

B.

“”

C.

1

D.

(0)

Full Access
Question # 66

A developer needs to create an unattended automation process that extracts the information from emails from a centralized mailbox. The developer needs to use the mail

folder, port, server, username, and password values, with no email client accessible on the unattended machine.

Which activity should the developer use to fetch unread emails with the subject "Email for Robot"?

A.

Save Mail Message

B.

Get Outlook Mail Messages

C.

Save Outlook Mail Message

D.

Get IMAP Mail Messages

Full Access
Question # 67

Which is the recommended variable type for storing password values that are composed solely of numbers?

A.

Object

B.

Int32

C.

SecureString

D.

Int64

Full Access
Question # 68

A developer needs to use the REFramework to automate a business process that involves processing transactions within an Excel table. Each transaction in the table should follow the same steps for

processing and queues cannot be used as there is no Orchestrator in the environment.

Which variable type is best suited for Transactionltem in this scenario?

A.

System.Data.DataRow

B.

UiPath.Core.Queueltem

C.

System.Data. DataTable

D.

System.Data.DataRow[]

Full Access
Question # 69

What is the Endpoint when configuring a REST Message?

A.

The provider response indicates there is no data to send back

B.

The URI of the data to be accessed, queried, or modified

C.

The command to the REST script to stop execution

D.

The URI of the Webserver

Full Access
Question # 70

A developer wants to retrieve the value of a column from a DataRow object. Which activity can be used?

A.

Get Row Item

B.

Get from Collection

C.

For Each Row in Data Table

D.

Lookup Data Table

Full Access
Question # 71

Which of the following activities can be used to get the state of a button (enabled/disabled)?

A.

Get Attribute

B.

Check App State

C.

Find Element

D.

Get Text

Full Access
Question # 72

What is the default URL of the OCR server that runs the Computer Vision service?

Full Access
Question # 73

Which actions can a Business Rule take without scripting?

A.

Set field values and query the database

B.

Set field values and write to the system log

C.

Set field values and add message

D.

Set field values and generate an event

Full Access
Question # 74

After generating a strict selector using the Indicate target on screen option within a Click activity, what should the developer utilize to view the complete list of attributes for the targeted UI element?

A.

Open in UI Explorer

B.

Properties Panel

C.

Debug Mode

D.

Output Panel

Full Access
Question # 75

Which selector should be adjusted according to best practices to ensure reliable and stable automation?

A.

B.

C.

Full Access
Question # 76

What are Application Files in a ServiceNow application?

A.

CSV files containing data imported into an application

B.

XML exports of an application's Update Set

C.

An XML export of an application's table records

D.

ServiceNow artifacts comprising an application

Full Access
Question # 77

Considering a process developed using REFramework, if the status of a transaction was set to "Failed" with the Error Type specified as "Business", the process will transition to which state?

A.

Get Transaction Data

B.

Initialization

C.

End Process

D.

Process Transaction

Full Access
Question # 78

What is the most efficient way to implement the behavior of monitoring an Outlook 365 email account and executing automation steps when a certain email is received?

A.

Create a robot that periodically opens Outlook UI, scrapes received email information, opens and extracts data from matching criteria emails, initiates a new job, and continues email monitoring.

B.

Use the Office365 Email Monitoring Trigger and configure the filters.

C.

Use the Office365 Email Received Trigger and configure the filters.

D.

Create a robot that once every few minutes reads the emails from the account and if one matching the search criteria appears, it starts executing the automation steps.

Full Access
Question # 79

A developer aims to employ the REFramework for automating a business process that involves a TransactionData collection (DataTable) comprising vendor names and addresses.

Instructions: Choose the appropriate variable type for the Transactionltem from the provided drop-down list in the following exhibit.

Full Access
Question # 80

Based on best practices, how can the integer value, Mylnteger be displayed inside a Log Message activity?

A.

"The value is MylntegerToString"

B.

"The value is" = Mylnteger

C.

"The value is " + Mylnteger

D.

"The value is" + MylntegerToString

Full Access
Question # 81

What is the main purpose of using the App/Web Recorder during automation development?

A.

To test and optimize the execution speed of automation workflows across various environments.

B.

To create custom reusable components within UiPath Studio for future use in different projects.

C.

To automatically generate workflow elements for UI interactions by recording actions in an application or web page.

D.

To design and debug complex workflows using dynamic components.

Full Access
Question # 82

In the context of the REFramework, if the OrchestratorQueueName key is present in both the Settings and Assets sheets, but an asset with the corresponding name is not present in Orchestrator, what will be the behavior at run time?

A.

The flow will throw an exception in InitAllSettings workflow.

B.

The flow will use the value from the Settings sheets since the asset is missing.

C.

An empty string will be saved for the "OrchestratorQueueName" key in the config dictionary.

D.

The "OrchestratorQueueName" key is not added to the config dictionary and the flow will throw in Get Transaction Data workflow.

Full Access
Question # 83

Where can the UiPath Robot logs be stored for centralized access and analysis?

A.

Directly into a database.

B.

Local text files only.

C.

Microsoft Excel files.

D.

UiPath Orchestrator.

Full Access
Question # 84

In a workflow, a developer has set up two Int32 variables: Var1 and Var2. During Debug mode execution, which panel enables the developer to keep track of the outcome of the expression Var1 > Var2?

A.

Local Panel

B.

Debug Panel

C.

Verify Variables Panel

D.

Watch Panel

Full Access
Question # 85

A developer examines a workflow in which filenames are stored within a collection. The collection is initialized with a single filename. When adding a new filename to the collection, which collection variable type will cause an error?

A.

System.Collections.Generic. Dictionary

B.

System.Array

C.

System. Data. DataTable

D.

System.Collections.Generic.List

Full Access
Question # 86

Which is an example of when an application might use a Scheduled Script Execution (Scheduled Job)?

A.

To display a custom welcome message when a user logs in.

B.

The application needs to query the database every day to look for unassigned records.

C.

The application needs to run a client-side script at the same time every day.

D.

To validate form input fields before a record is submitted.

Full Access
Question # 87

When a developer is examining a suspended state upon reaching a breakpoint, which activity will the Executor be directed to if Step Out is selected from the Debug section in

UiPath Studio's ribbon interface?

A.

W1

B.

S1

C.

A1

D.

S2

Full Access
Question # 88

A developer is using a Type into activity to enter details into a web form The developer notices that the selector for the text field is unreliable. The selector that is shown in the exhibit currently targets both a text label and a text field at runtime Only one additional Property needs to be clicked to ensure the selector targets only the First Name text field at runtime.

Instructions: Click the additional Property checkbox in the following Ul Explorer "Unselected Items" column that should be used for the First Name text field.

Full Access
Question # 89

A developer is building an automation which types text into a text file. The Activity Project Settings for UI Automation Modern activities are set as follows:

What is the behavior of the Type Into activity when executing the workflow?

A.

The activity will remove Multi Line in Run mode and a Single Line in Debug mode.

B.

The activity will use only properties set in Activity Project Settings.

C.

The activity will remove a Single Line in Run mode and in Debug mode.

D.

The activity will remove a Single Line in Run mode and Multi Line in Debug mode.

Full Access
Question # 90

A developer wants to run two processes on the same machine, the first process contains only HTTP Request activities and the second one performs UI Automation. What option needs to be enabled on the first process in order to ensure that the processes can run concurrently on the same machine?

A.

Starts in Background

B.

Attended Automation

C.

Disable Pause

D.

Supports Persistence

Full Access
Question # 91

Which activity should be used to iterate through all the files in a local folder?

A.

For Each File in Folder

B.

For Each File Info

C.

For Each Row in Datatable

D.

Do For Each File

Full Access
Question # 92

A developer is building a process that needs to click an element which requires a mouse hover to become visible. However, the element does not appear with the default click setting. The input method for the Click activity is Send Window Message

Which property should the developer configure to be able to click the element?

A.

The developer should change the input method to Hardware Events and the CursorMotionType to Smooth.

B.

The property AlterlfDisabled should be set to True.

C.

The developer should change the input method to Simulate and the CursorMotionType to Instant.

D.

The property AlterlfDisabled should be set to False.

Full Access
Question # 93

How does UiPath handle different dependency versions for multiple running processes that run at the same time?

A.

Each running process uses its own required version of the dependency.

B.

Running processes use the earliest compatible dependency version.

C.

Each running process automatically adapts to the available dependency version.

D.

All running processes use the latest version of the dependency available.

Full Access
Question # 94

A developer wants to create a process that searches for images on a website and then saves the images in a local folder However, the website contains an error. As a result, the process may need to search for an image multiple times in order for it to display.

Which container activity should the developer use to search for an image multiple times'?

A.

Attach Browser

B.

On Image Appear

C.

On Element Appear

D.

Retry Scope

Full Access
Question # 95

What is the purpose of Breakpoints when debugging a project in UiPath Studio?

A.

To purposely pause the debugging process on an activity which may trigger execution issues.

B.

To automatically restart the debugging process when an error is encountered.

C.

To measure the execution time of each activity in the workflow.

D.

To export debugging results in different formats.

Full Access
Question # 96

A developer has created a variable of type List of Strings named "UsersList", and initialized it with an empty list: "UsersList = new List(Of String)".

What is printed in the log message after the following Invoke Code is executed?

A.

0

B.

2

C.

Object reference not set to an instance exception is thrown

D.

System Argument Exception is thrown

Full Access
Question # 97

What is the recommended approach for handling tabular data when building a REFramework transactional project in UiPath?

A.

Implement custom activities to handle the tabular data.

B.

Convert the tabular data into a string format and store it in a single variable.

C.

Use separate variables to store each column of the tabular data.

D.

Utilize a DataTable variable to store and process the tabular data.

Full Access
Question # 98

To retrieve all Outlook emails with the word "UiPath" in the subject, which filtering property and filter schema should a developer use?

A.

Property: FilterByMessagelds

Schema: "@SQL=""urn:schemas:httpmail:subject"" like 'UiPath%""

B.

Property: Filter

Schema: "@SQL=""urn:schemas:httpmail:subject"" like '%UiPath%""

C.

Property: Filter

Schema: "@SQL=""urn:schemas:httpmail:subject"" like 'UiPath%""

D.

Property: FilterByMessagelds

Schema: "@SQL=""urn:schemas:httpmail:subject"" like '%UiPath%""

Full Access
Question # 99

You are developing the MyApp application that has a table, Table A. When the MyApp application is installed on another instance, you want Table A's records to be installed as part of the application. Table A's records will be installed when:

A.

Table A is not included in the System Clone > Exclude Tables list

B.

Table A is active and extends the Task table

C.

Table A has an automatic number counter for new records and table property Includes _data is set to True.

D.

Table A's records are added to the application record using the Create Application Files feature.

Full Access
Question # 100

What happens when the area selection feature in the UiPath Computer Vision wizard is used?

A.

The selected area is automatically resized to fit all UI elements within it.

B.

A portion of the application Ul can be selected, which is helpful when dealing with multiple fields bearing the same label.

C.

The selected area is treated as a single UI element, with no further analysis of its contents.

D.

A duplicated Ul can be selected, and the copy is modified in the automation process.

Full Access
Question # 101

A developer downloads a published package from UiPath Orchestrator 2021.10 to use locally. What is the extension of the downloaded package?

A.

.csproj

B.

.dll

C.

.nupkg

D.

.zip

Full Access
Question # 102

A developer wants to invoke a workflow in Main xaml called ProcessPurchaseOrders.xamI. Data needs to be passed to and from the invoked workflow What is the correct sequence of steps the developer needs to perform?

Instructions: Drag the Description found on the left and drop on the correct Step found on the right

Full Access
Question # 103

A developer created a workflow as shown in the following exhibit:

Which exception will be thrown when the workflow is executed?

A.

ArgumentException

B.

InvalidOperationException

C.

BusinessRuleException

D.

NullReferenceException

Full Access
Question # 104

What are the methods supported by Connector Builder in the UiPath Integration Service?

A.

Get, Post, Put, Options

B.

Get, Get By Id, Post, Put, Patch, Delete

C.

Get, Post, Put, Trace

D.

Get, Get By Id, Put, Trace, Options

Full Access
Question # 105

What activity can be used to get all rows in a DataTable variable with a Quantity value greater than 500?

A.

Sort Data Table

B.

Output Data Table

C.

Lookup Data Table

D.

Filter Data Table

Full Access
Question # 106

When should a static selector be used versus a dynamic selector'?

A.

When a standard selector contains a tag value that changes for each execution

B.

When all the attributes or tags remain the same for each execution

C.

When a standard selector contains an attribute value that changes for each execution

D.

When the selector needs to interact with different types of elements on the same page

Full Access
Question # 107

What describes how the Excel Application Scope activity interacts with a Microsoft Excel file?

A.

Works only with xls files and Excel does not need to be installed

B.

Works with xlsx files and Excel does not need to be installed

C.

Works only with xlsm files and Excel must be installed

D.

Works with xls and xlsm files and Excel must be installed

Full Access
Question # 108

Which of the following statements is true about the existing UiPath Studio installation packages?

A.

The Attended Robot installation package installs only UiPath Studio, and Robot.

B.

The Attended Robot installation package installs only the UiPath Robot.

C.

The Unattended Robot installation package installs only UiPath Studio, Assistant, and Robot.

D.

The Automation Developer installation package installs only UiPath Studio, Assistant, and Robot.

Full Access