UiADPv1Free trialFree trial

By uipath
Aug, 2025

Verified

25Q per page

Question 1

What are the primary functions of the UiPath Integration Service?

  • 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 UI 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 UI components, manages API keys, kicks off automations with client-side triggers, provides curated events.

Question 2

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

Image 1

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:

Image 2

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 Refresh Test Data.
  • D: Click Right on the Test Case and select Remove Test Data.

Question 3

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

Image 1
  • A: A runtime error occurs and the Finally block is not executed.
  • B: The Finally block is executed and the Catches section catches the exception.
  • C: No exception is thrown and the Finally block executes.
  • D: No exceptions are happening and the workflow continues to execute.

Question 4

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 use the value from the Settings sheets since the asset is missing.
  • B: The “OrchestratorQueueName” key is not added to the config dictionary and the flow will throw in Get Transaction Data workflow.
  • C: The flow will throw an exception in initAllSettings workflow.
  • D: An empty string will be saved for the “OrchestratorQueueName" key in the config dictionary.

Question 5

Review the following graphics:

Image 1 Image 2 Image 3 Image 4

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: Continues to the next activity after 30 seconds without clicking on the element.
  • C: Waits 10 seconds before clicking on the element.
  • D: Timeout error occurs without clicking on the element.

Question 6

Review the following graphics:

Image 1 Image 2 Image 3 Image 4

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

  • A: ApplicationNotFoundException
  • B: SelectorNotFoundException
  • C: Try
  • D: Exception

Question 7

A developer is using the REFramework template to automate a process. In “SetTransactionStatus” file, there is the following sequence of activities, where the last Log Message activity was added by the developer:

Image 1

The configuration for Add Log Fields and Remove Log Fields activities are shown below:
Add transaction log fields (Success)

Image 2

Remove transaction log fields (Success)

Image 3

The developer runs the process and notices the argument values for the first transaction are:

in_TransacationID = “07/18/2023 10:27:29”
io_TransactionNumber = 1
in_TransactionField1 = “UI235-80”
in_TransactionField2 = “Update Request”

Which of the following Log Message Details will be displayed when executing the activity Log Message Completed for the first transaction, considering it is successful?

  • A:
  • B:
  • C:
  • D:

Question 8

Given a database “dt” with the following header:

“Surname, Address, Zip Code, Given Name, Phone Number”.

What is the correct configuration of the Invoke Method activity so that the resulting header will be:

“Surname, Given Name, Address, Zip Code, Phone Number”.

  • A:
  • B:
  • C:
  • D:

Question 9

Considering that the attached data table is stored in a variable called “dt”:

Image 1

Which of the following expressions will throw an exception during execution?

  • A: dt.AsEnumerable.Where(Function(x)x(“Item”).ToString.Equals(“strawberry”))
  • B: dt.AsEnumerable.Any(Function(x)x(“Item”).ToString.Equals(“strawberry”))
  • C: dt.AsEnumerable.FirstOrDefault(Function(x)x(“Item”).ToString.Equals(“strawberry”))
  • D: dt.AsEnumerable.First(Function(x)x(“Item”).ToString.Equals(“strawberry”))

Question 10

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

  • A: Utilizing LINQ to find the total sum of integers in a list by writing listOfIntegers.Sum(Function(x) x).
  • B: Applying LINQ to filter out emails in a list of strings containing multiple email addresses by writing listOfStrings.FilterEmails().ToList().
  • C: Employing LINQ to convert DataTable to JSON format by writing dataTable.ToJSON().
  • D: Using LINQ to identify the longest string in a list of strings by writing listOfStrings.Max(Function(x)x.Length()).

Question 11

Data from an Excel file is read into a data table named "dtEmployee", as displayed in the following graphic:

Image 1

A developer needs to filter the data table to obtain all rows representing employees from the Finance and IT departments with a Salary under 30,000. Which expression yields the desired outcomes?

  • A: dtEmployee.Select("([Department]='IT' AND [Department]='Finance') AND [Salary] < 30000")
  • B: dtEmployee.Select("[Department]='IT OR [Department]='Finance' OR [Salary] < 30000")
  • C: dtEmployee.Select("[Department]='IT' OR [Department]= 'Finance' AND [Salary] < 30000")
  • D: dtEmployee.Select("([Department]='IT' OR [Department]='Finance') AND [Salary] < 30000")

Question 12

How can a process be converted from a foreground process to a background process?

  • A: A process may be turned into a Background Process by adding a “Background” tag to the process name as long as it does/does not contain Ui interaction. You need to go to the Project Settings and modify the name of the process.
  • B: A process may be turned into a Background Process as long as it does not contain persistence activities. You need to go to the Project Settings window and set the Supports Persistence toggle to No.
  • C: A process may be turned into a Background Process by just deleting the UiAutomation package dependency as long as it does/does not contain UI interaction.
  • D: A process may be turned into a Background Process as long as it does not contain activities with UI interaction. You need to go to the Project Settings window and set the Starts in Background toggle to Yes.

Question 13

DRAG DROP

What is the correct execution order of the State activity sections?

Instructions: Drag the Description found on the “Left” and drop on the correct Execution Order found on the “Right”.

Image 1

Question 14

What are the two types of elements that can be included in an Object Repository?

  • A: Local elements and library elements.
  • B: Dynamic elements and static elements.
  • C: Web elements and mobile elements.
  • D: UI elements and non-UI elements.

Question 15

What is the role of server-side event triggers in UiPath Integration Service?

  • A: To start UiPath processes only when users interact with specific UI elements.
  • B: To manage API connections and authorize usage across different security protocols.
  • C: To notify users when a new connector is available in the UiPath Integration Service catalog.
  • D: To start UiPath processes by configuring events such as data updates, insertions or deletions in other systems.

Question 16

A developer designed a process in the REFramework using Orchestrator queues. In which state(s) will be the status updated for each Transaction Item in the queue?

  • A: Process Transaction only.
  • B: Get Transaction Data and Process Transaction.
  • C: Initialization and Process Transaction.
  • D: Initialization and Get Transaction Data.

Question 17

A developer is building an automation that must interact with a destination remote computer reached by jumping through multiple RDP connections, as described by the following scenario:

  • The Robot is installed on Machine A, which connects through RDP to Machine B.
  • From Machine B another RDP connection is opened to Machine C, where the automation must be performed.
    Which of the following scenarios is appropriate for the developer who wants to use UI Automation activities?
  • A: UI Automation can be used and the following are prerequisites: Machine A - install RDP extension. Machine B - install RemoteRuntime.msi. Machine C - install RemoteRuntime.msi.
  • B: UI Automation can be used and the following are prerequisites: Machine A - install RDP extension. Machine B - install RDP extension and RemoteRuntime.msi. Machine C - install RemoteRuntime.msi.
  • C: UI Automation can be used and the following are prerequisites: Machine A - no requirement. Machine B - no requirement. Machine C - install RemoteRuntime.msi.
  • D: UI Automation can be used and the following are prerequisites: Machine A - install RDP extension. Machine B - no requirement. Machine C - install RemoteRuntime.msi.

Question 18

How are mock files organized in an automation project structure?

  • 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 19

When should a developer log a coherent message with the Logging Level set as “Info” while building an automation project?

  • A: Every time data is read from external sources.
  • B: Every time an exception is caught in a Catch block.
  • C: Every time a variable or argument value is used.
  • D: Every time the robot encounters an error processing a Queue Item.

Question 20

The "arrayOfPointsGainedByParticipant" Object array is created and initialized with the following values: {"7", "4", "1"}. Which is the value and data type returned, at runtime, by arrayOfPointsGainedByParticipant(1)?

  • A: Value: 4 - Data Type: Object
  • B: Value: 7 - Data Type: String
  • C: Value: 4 - Data Type: String
  • D: Value: 7 - Data Type: Object

Question 21

In UiPath Studio, when a developer executes a workflow in Debug mode and the process stops at a breakpoint, which panel enables the developer to assign values to variables prior to resuming the process?

  • A: Locals Panel and Watch Panel.
  • B: Immediate Panel and Watch Panel.
  • C: Watch Panel and Breakpoint Panel.
  • D: Locals Panel and Immediate Panel.

Question 22

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

  • 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 to Int32.
  • D: Default cases can be numbered.

Question 23

“Process A” is scheduled to run at 2:00 PM using a time trigger with the Schedule ending of job execution feature configured to stop the job after 20 minutes. Assuming that the robots are busy and “Process A” is queued until 2:05 PM, at what time will “Process A” be stopped?

  • A: 2:20 PM
  • B: 2:25 PM
  • C: 2:05 PM
  • D: 2:28 PM

Question 24

Which part of a test case that is using BDD (Behavioral-Driven Development) template structure supports the Surround with mock feature?

  • A: Then
  • B: Setup
  • C: When
  • D: Given

Question 25

A developer is using a Type Into activity with the Input Method set to Simulate. Which property needs to be enabled for the activity to execute even if the target UI element is deactivated or read-only?

  • A: Deselect at end.
  • B: Alter disabled element.
  • C: Activate.
  • D: Click before typing.
Page 1 of 7 • Questions 1-25 of 151

Free preview mode

Enjoy the free questions and consider upgrading to gain full access!