Questions and Answers ()
(Verified Answers)
A developer needs to read data from invoices and then input the extracted data into another system.
Each invoice can be processed separately and the order 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
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: Initialization
File: InitAllSettings.xaml
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
practices, 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}
UserData is of type String[] UserData = {FirstName, LastName, City}
A developer automated a process inthe RE Framework using Orchestrator queues. In which state(s) is
the status updated to Successful for each Transaction Item from the queue?
* Initialization and Process Transaction
* Initialization and Get Transaction Data
* Get Transaction Data only
* Process Transaction only
Initialization and Process Transaction
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 call is received, the employee starts the attended robot. The robot contains four
sub-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
NOT 1 or 2
A developer is working on a project with other developers and using GIT source control in UiPath
Studio. The developer made some modifications in the workflow on the local machine and then
selected the Commit and Push button.
What is the outcome of this action?
* Current version was committed to the remote repository and pushed to the local repository
* Local changes were committed to the local repository and then pushed to the remote repository
* Current changes were committed and pushed to the local repository
* Local changes were committed to the remote repository and then pushed to the remote repository
Local changes were committed to the local repository and then pushed to the remote repository
When an unexpected error occurs at the application level in the Process.xaml file of the RE
Framework, which type of exceptions is caught by default?
System.ApplicationException
System.Exception
System.NullReferenceException
UiPath.Core.BusinessRuleException
UiPath.Core.BusinessRuleException
A developer has followed UiPath best practices when automating a process by using the RE
Framework. A large number of Orchestrator assets of type Integer are required for the process.
Where int eh Config.xlsx file should the names of the Integer assets be referenced?
A new sheet
Constants sheet
Assets sheet
Settings sheet
Assets sheet
If you want to read a specific set of pages from PDF file using the Extract PDF Page Range activity,
what describes this activity?
* Expression "<StartPageNumber>-<EndPageNumber>" is a valid expression for the "Range" field
* Output of the activity is a String variable containing data from all the pages read
* Password-protected pdfs cannot be read using this activity
* If "Range" = "" is provided, it will read data from all the pages present in the .pdf file
Expression "<StartPageNumber>-<EndPageNumber>" is a valid expression for the "Range" field
A developer used the RE Framework to create a Performer process. In which workflow(s) is the Queue
Item status updated?