top of page
UiPath Interview Questions

1

Types of Workflows in UiPath?

Sequences, Flow Chart and State Machines

2

Which scenario you can use Sequence?

Used for small projects which are suitable for linear processes. Example: Login a web browser.

3

Which scenario you can use Flow charts?

Used for larger or small projects where there are multiple decision making scenarios. Example: To perform multiple if conditions cases.

4

When can you use state machines ?

State machines are to perform certain actions based on some transition condition. Can be used in a process where multiple transition conditions has to be evaluated.

5

What are the components available in UiPath?

The components available in UiPath are:

UiPath ROBOT
UiPath Studio
UiPath Orchestrator

6

List out some of the key data types in UiPath.

Text Variables – This type of variables is used to store the text values.
True/False Variables – This type of variables is used to store Boolean values.
Number Variables – This type of variables is used to store Integer values.
Array Variables – This type of variables is used to store an array of integers or string.
Date and Time Variables – This types of variables is used to store date and time variables.
Data Table Variables – This type of variables is used to store Data Table, which stores the values in the form of table.
Generic Variables – This type of variables is used to store generic type such as Mail Merge, Database etc.

7

Name the various types of recording available in UiPath?

The various types of recording available are:

Desktop
Basic
Web
Image
Citrix

8

What are some of the activity properties in Uipath ?


Delay After
Timeout MS
Target
Delay Before
Wait for Ready etc.

9

What is UiPath explorer used for ?

UI Explorer is a tool that enables you to make a custom selector for a specific UI element. UIAutomation. Activities package is installed as an addition to the project

10

What are the various recording tools are avilable in Uipath ?

The various types of recording available are:

Desktop
Basic
Web
Image
Citrix

11

Name some error handling activities available in UiPath?

Some of the error handling activities are:

Throw
Catch
Terminate Workflow
Try Catch

12

How do you handle exceptions in your projects ?

Always any workflows should be surrounded by Try and Catch block to control the exceptions. All exceptions should be logged properly and if required email can be triggered.

13

How do you implement re usability in Uipath ?

We can implement re usability in Uipath by building workflows as libraries. Later libraries can be invoked in any project where ever required.

14

Where should credentials be stored?

In Windows Credential Store
In Orchestrator, as assets

15

What is Queue and Transaction?

Queue are type of Data and Transactions are Data for the Processing
For e.g., Queue – is Invoice Number – String type and Transactions are “INV132” each time Transactions will be updated once it completed process

bottom of page