QUESTIONS AND ANSWERS (VERIFIED ANSWERS)
1. A developer needs to read data from invoices and then input the extracted
data into another system. Each invoice can be processed separately and theorder
in which they are processed does not matter.
Which type of design is best-suited for this automation?
Iterative Process
Linear Process
Library Transactional
Process
: Transactional Process
2. Which state and file in the RE Framework in the Config.xlsx file read?
*State: Initialization
File: InitAllApplications.xaml
*State: Initialization
File: InitAllSettings.xaml
*State: Get Transaction Data
,File: GetTransactionData.xaml
*State: Process Transaction File:
Process.xaml
: State: InitializationFile:
InitAllSettings.xaml
3. A developer scrapes data from a website and stores it in three variables:
FirstName, LastName, and City. When passing the data to another workflow
to be used later in the process, the developer wants to store the three String
variables in a fixed-sized data structure named UserData.Based on best prac-
tices, which data structure and assignment should the developer use?
UserData is of type List<Object>UserData = New List(Of Object) ({ FirstName,
LastName, City })
UserData is of type Object[]UserData = {FirstName, LastName, City}
UserData is of type List<String>UserData = New List(Of String) ({ FirstName,
LastName, City })
UserData is of type String[] UserData = {FirstName, LastName, City}
: UserDatais of type String[] UserData = {FirstName, LastName, City}
,4. A developer automated a process inthe RE Framework using Orchestrator
queues. In which state(s) is the status updated to Successful for each Trans-
action Item from the queue?
* Initialization and Process Transaction
* Initialization and Get Transaction Data
, * Get Transaction Data only
* Process Transaction only
: Initialization and Process Transaction
5. A developer created a process to capture caller data from a Call Center
application. The process is designed to help a Call Center employee enter
details about a call into an Excel sheet. For instance, when an incoming callis
received, the employee starts the attended robot. The robot contains foursub-
processes:
1. Search for the caller by Caller ID using an HTTP request and retrieve data
such as name, address, email, support history
2. Save the retrieved called information in an Excel sheet
3. In a web application, create a new history entry for the caller, upload the
Excel sheet, and then submit the form
4. Send a Microsoft Outlook email with the confirmation
Which sub-process requires modifications to some of the properties' default
values of activities to ensure it runs in the background?
1
2
3
4