Robotic Enterprise Framework Flashcards

1
Q

In a standard Dispatcher/Performer implementation, which type of process updates the status of a queue item?

Choose one of the options below.

Dispatcher

Performer

A

Performer

The status of a queue item is typically updated when the item is processed. Performers do the processing.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

If no data is found during the execution of the Get Transaction Data state, what state does the process transition to next?

Choose one of the options below.

Initialization

Process Transaction

End Process

Get Transaction Data

A

End Process

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

A developer has provided the queue folder name value in the Config file as well as an Input argument, as seen in the below screenshot. Which of the two will be used during process execution?

Choose one of the options below.

Both the Config file value and the Input argument value

The Config file value

The Input argument value

A

The Input argument value

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

A REFramework process that gets a transaction item from a specified Orchestrator queue can also make use of the RetryNumberGetTransactionItem and RetryNumberSetTransactionStatus parameters from the Config file.

Choose one of the options below.

Yes

No

A

Yes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What are the two transitions that leave the Get Transaction Data state?

Choose two of the options below.

Transition: New Transaction
Next state: Process Transaction

Transition: Success
Next state: Initialization

Transition: No Data
Next state: End Process

Transition: System Exception
Next state: End Process

A

Transition: New Transaction
Next state: Process Transaction

Transition: No Data
Next state: End Process

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

When building a Consumer with the REFramework which uses Orchestrator Queues, where would you set the MaxRetryNumber?

Choose one of the options below.

In the Settings sheet of the Config file.

In the Max # of retries field of the Orchestrator Queue.

In the Constants sheet of the Config file.

In the Constants sheet of the Config file along with the MaxConsecutiveSystemExceptions.

A

In the Max # of retries field of the Orchestrator Queue.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What will be the status of a Job in Orchestrator if the ShouldMarkJobAsFaulted parameter is set to TRUE and the maximum consecutive exceptions number is reached?

Choose one of the options below.

Faulted

Successful

Stopped

Suspended

A

Faulted

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

In which workflow does the AddLogFields activity generate the additional log fields Transaction Number and Transaction ID?

Choose one of the options below.

Retry Current Transaction

Init All Settings

Set Transaction Status

Process

A

Set Transaction Status

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

A transaction has failed because an input value exceeded the threshold set in the Config file. What type of exception has caused the transaction to fail?

Choose one of the options below.

Application Exception

Business Exception

A

Business Exception

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Out of the box, this state first checks if the Stop button was triggered in UiPath Orchestrator. In what state is this logic implemented?

Choose one of the options below.

Initialization

Get Transaction Data

Process Transaction

End Process

A

Get Transaction Data

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

In which state is the TransactionItem object assigned to the variable?

Choose one of the options below.

Process Transaction

Get Transaction Data

End Process

Initialization

A

Get Transaction Data

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Out of the box, what are the workflows that are invoked in the Initialization state in a REFramework project?

Choose three of the options below.

SetTransactionStatus

InitAllSettings

KillAllProcesses

TakeScreenshot

Process

InitAllApplications

A

InitAllSettings

KillAllProcesses

InitAllApplications

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

In which sheet of the Config file will you define a credential asset?

Choose one of the options below.

Assets

Constants

Settings

A

Settings

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

The automation tries to retrieve a new transaction item in the Get Transaction Data State, but all the transaction items have been already processed. Which transition will execute next?

Choose one of the options below.

1
Transition: No Data
Next state: End Process

2
Transition: Successful
Next state: Get Transaction Data

3
Transition: New Transaction
Next state: Process Transaction

4
Transition: System Exception
Next state: End Process

A

Transition: No Data
Next state: End Process

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

In the Initialization state, all the necessary applications have been initialized and the settings required for the process have been read. Which transition is executed next?

Choose one of the options below.

1
Transition: New Transaction
Next state: Process Transaction

2
Transition: No Data
Next state: End Process

3
Transition: Successful
Next state: Get Transaction Data

4
Transition: System Exception
Next state: End Process

A

3
Transition: Successful
Next state: Get Transaction Data

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Out of the box, what are the workflows that are invoked in the End Process state in a REFramework project?

Choose two of the options below.

KillAllProcesses

CloseAllAplications

RetryCurrentTransaction

TakeScreenshot

A

KillAllProcesses

CloseAllAplications

17
Q

What statements best describes the functionality of the GetTransactionData workflow?

Choose one of the options below.

Retrieves data only from an Orchestrator Queue.

Retrieves data only from an Excel file.

Retrieves data from any defined source (queues, Excel files, file paths).

Retrieves data only from file paths.

A

Retrieves data from any defined source (queues, Excel files, file paths).

18
Q

Out of the box, what are the workflows that are invoked in the Process Transaction state in a REFramework project?

Choose three of the options below.

InitAllApplications

GetTransactionData

Process

RetryCurrentTransaction

SetTransactionStatus

InitAllSettings

A

Process

RetryCurrentTransaction

SetTransactionStatus

19
Q

You want to mark a Job as Faulted in Orchestrator, for any error during the Initialization state. You’ll assign the TRUE or FALSE value to the ShouldMarkJobAsFaulted constant, in the Config file?

Choose one of the options below.

False

True

A

True

20
Q

An automation processes emails. A check done in the Process state determines that the numeric values from an email exceed the set threshold, in the Config file, for the processing. Which transition will execute next?

Choose one of the options below.

Transition: System Exception
Next state: End Process

Transition: New Transaction
Next state: Process Transaction

Transition: Successful
Next state: Get Transaction Data

Transition: No Data
Next state: End Process

A

Transition: Successful
Next state: Get Transaction Data

21
Q

What is the purpose of the ConsecutiveSystemExceptions variable?

Choose one of the options below.

Used to control the number of consecutive business exceptions.

Used during transitions between states to represent exceptions other than business exceptions.

Used to control the number of consecutive system exceptions.

Used to control the number of attempts of retrying the transaction processing in case of system exceptions.

A

Used to control the number of consecutive system exceptions.

22
Q

What is the Variable Type for the Config variable?

Choose one of the options below.
DataTable

String

QueueItem

Dictionary

A

Dictionary

23
Q

The TransactionNumber is modified in which workflows?

Choose two of the options below

InitAllSettings

SetTransactionStatus

Process

GetTransactionData

RetryCurrentTransaction

A

SetTransactionStatus

RetryCurrentTransaction

24
Q

A Consumer process gets queue items and enters the data in the UI Demo app. The application has stopped responding while processing an item. Which transition is executed next?

Choose one of the options below.

1
Transition: New Transaction
Next state: Process Transaction

2
Transition: Business Exception
Next state: Get Transaction Data

3
Transition: System Exception
Next state: Initialization

4
Transition: Success
Next state: Get Transaction Data

A

3
Transition: System Exception
Next state: Initialization

25
Q

In which state is the screen resolution logged?

Choose one of the options below.

End Process

Get Transaction Data

Process

Initialization

A

Initialization