wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

UiPath Advance Certificate

Total questions: 30

Worksheet time: 3600secs

Name
Class
Date
1.

What do the Items in the Orchestrator queues consist of? Select all the options that apply

a)

Processes to be executed by the robots

b)

Jobs to be executed by the robots

c)

Input data for the processes executed by the robots

2.

Which is the best way to delete unreferenced variables?

a)

The unreferenced variables do not utilize memory, therefore you do not have to delete them

b)

You can manage your variables from the Design panel>Manage Variables>Remove Unreferenced

c)

Delete them one by one from the Variables panel.UiPath Studio performs the workflow validation in real-time, therefore you can see which variable is being used

3.

In which workflow in the UiPath Robotic Enterprise Framework template is the retry mechanism implemented?

a)

The SetTransactionStatus workflow

b)

The Main workflow

c)

The GetTransactionData workflow

4.

What happens in the Init state of the Main workflow, in the UiPath Robotic Enterprise Framework template?

a)

The robot checks if the previous transaction is complete and then starts the next one

b)

The transaction items are extracted from the Queue

c)

The robot reads the configuration file and initializes all the required applications

5.

When should the "Add Log Fields" activity be used?

a)

When logs need to be enabled

b)

When a log message with a maximum number of five visible fields needs to be generated

c)

When the standard log message has to be customized by adding new fields to it

6.

Where can we see the logs generated by running robots?

a)

In the Orchestrator logs

b)

In the local Logs folder

c)

In the Output panel

7.

Which of the following are required to have efficient execution of automation projects?

a)

Proper exception handling

b)

Effective logging mechanisms

c)

Recovery abilities

8.

What data flow should be used for UI navigation and data processing?

a)

State Machine

b)

Flowchart

c)

Sequence

9.

How does the Anchor Base work?

a)

It searches for an UiElement by using another UiElement as an anchor

b)

It searches for an UiElement at a fixed anchor position

c)

It searches for an UiElement using a relative coordinate position

10.

What is the best way to select a row with a certain value from a column in Excel?

a)

Use a Read Range activity to retrieve the contents of the Excel file, and then use a For Each activity loop to iterate through the data and identify the element

b)

Use the Find functionality from Excel

c)

Use a Read Range Activity to retrieve the contents of the Excel file, and then use a Select method to identify the desired row

11.

The String.Format("Input={0} and Output={0}","1","2")

a)

Input={0} and Output={0}

b)

Input = 1 and Output = 2

c)

Input ={1} and Output ={2}

d)

An error

e)

Input = 1 and Output =1

12.

In UiPath Robotic Enterprise Framework, what are the transitions of the Init state?

a)

In the case of System Error, the transition is to the Init state

b)

In the case of Success, the transition is to the Process Transaction state

c)

In the case of Success, the transition is to the Get Transaction Data state

d)

In the case of System Error, the transition is to the End Process state

13.

Besides "Successful" and "Failed". Which of the statues below can a transaction have? Select all the options that apply

a)

Retried

b)

In progress

c)

New

d)

Abandoned

e)

Deleted

14.

In the UiPath Robotic Enterprise Framework template, if a System Error is encountered in the Process Transaction state of the Main workflow, which state is executed next?

a)

End Process

b)

inIt

c)

Get Transaction Data

15.

In the UiPath Robotic Enterprise Framework template, to enable the retry mechanism without using Queues, what should the value of MaxRetryNumber be set to?

a)

Any value greater than 2

b)

0

c)

Any values greater than 0

16.

If a large item collection is processed using For Each,which activity enables you to efficiently exit the loop after a specific moment?

a)

The "Break" activity is the most suitable in For Each

b)

A While loop should be used For Each

c)

No activity can be used.Instead,you have to try create a Boolean variable based on which the For Each loop is broken

17.

Which statement about the UiPath Robotic Enterprise Framework template is false?

a)

The framework can be used only if you get the input data from the UiPath server queues

b)

The framework is meant to be a template that helps the user design processes

c)

The framework has a robust exception handling scheme and event logging

18.

Which of the following are considered best practices?

a)

Start your new sequence with a short annotation meant to explain the purpose of the workflow

b)

Think about the exceptions that might occur during the execution of the process

c)

Include a Should Stop activity at the end of the workflow

19.

What types of assets can be stored in Orchestrator?

a)

String,Bool,Integer,Credential

b)

Integer,Password,GenericValue,String

c)

Array,Datatable,Boot,String

20.

When should the Simulate Type/Click property be used?

a)

Only for the testing process

b)

Only when background automation is required

c)

Whenever supported by the target application

21.

What is Orchestrator used for?

a)

Remotely controlling any number of robots and performing workflow management

b)

Designing workflows to be run by robots in a supervised mode

c)

Running Windows processes on the local machine

d)

Designing workflows to be run by robots in an unsupervised mode

22.

Which activity provides the easiest way to loop through all the rows in a Data Table?

a)

Do While

b)

For Each Row

c)

Repeat Until

d)

For Each

23.

The return value of the Get Transaction Item activity is of the following type:

a)

QueueItem

b)

Object

c)

String

d)

List

24.

Is there any way to hide the execution of one activity in the logs?

a)

Yes, by changing the minLevel property of the "Execution" logger from NLog.config.file

b)

No, but the logs can be manually edited

c)

Yes, by checking the Private property of the activity that is to be hidden

25.

How can you improve a selector?

a)

By using intermediate containers for better matching of the Ui element

b)

By adding the absolute position of the elements to the selector

c)

By replacing the dynamic parts of an attribute with wildcards

26.

Which of the following technologies can be used for background automation?

a)

The Full Text method of Screen Scraping

b)

Type into activity with SendWindowMessages flag checked

c)

Data scraping

d)

The Click activity with the Simulate Click flag checked

27.

Which of the following are considered best practices?

a)

Removing unreferenced variables

b)

Leaving target applications opened

c)

Deleting disabled code

28.

What is the slowest method of reading text?

a)

Native

b)

FullText

c)

OCR

29.

Which emails are deleted if you use Get IMAP Mail Messages with the DeleteMessages property set to true?

a)

Only the emails that were marked as previously read

b)

There is no DeleteMessages property for the Get IMAP Mail Messages activity. This option is available only for Get Exchange Mail Message

c)

The ones in the list that is retrieved by the Get IMAP Mail Messages activity

30.

One of the steps in your process is to authenticate on a web application.How can you check if the login succeeded or not?

a)

Check the return value of the Login activity

b)

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

c)

Use an Element Exist activity to check whether the login succeeded by searching for an element that us only displayed in that case