본문 바로가기
_PM•PO/[RPA] [UiPath]

[RPA] [UiPath] UiPath Automation Developer Professional v1.0 Practice Test - 문제 풀면서 정리하기(1)

by Jiji_지지 2023. 12. 19.

1. A long-running job was suspended waiting for an external task. Once the task is completed, which robot is selected by Orchestrator to continue the job's execution?

Any available Unattended robot.
The same robot that executed the job until suspension.
Any available Attended robot.
Any Unattended robot in "Resume" state.

Explanation

Topic: Use Tenant Entities (Webhooks, Alerts) and Folder Entities (Triggers, Credential Stores).

 

 

2. How does the Screen Refresh button function in the Computer Vision wizard?

It updates the UI elements of the target app with new positions and properties.
It refreshes the target app by closing and reopening it during runtime.
It restarts the Computer Vision neural network server in case of errors or disconnects.
It sends a new picture to the Computer Vision server to be analyzed again if something changes in the target app.
 

 

3. What is a major benefit of a REFramework Dispatcher process using Orchestrator queues?
Guarantees that all data follows a consistent format and fetches information from an Orchestrator queue.
Improved error handling when extracting data from multiple sources and directly adding it to queues.
Enhanced ease of use, as the REFramework automatically generates the queue.
The same robot that will process a Queue Item is responsible for adding each Queue Item to the queue.

Explanation

Topic: Explain the use of the REFramework and the Dispatcher and Performer / Producer and Consumer model.

 

4. After installing UiPath Remote Runtime, what automatically happens at every user login on the remote server?

The UiPathRemoteRuntime.exe process launches a dedicated UiPath Studio instance for each user.
The UiPathRemoteRuntime.exe process automatically configures the remote server for optimal automation performance.
The UiPathRemoteRuntime.exe process verifies the compatibility of installed extensions on the remote server and updates them if necessary.
A task in the Task Scheduler starts the UiPathRemoteRuntime.exe process for every user logged in.

Explanation

Section: Automate virtual environments using Remote Runtime.

 

5. Which unit test from REFramework test suite checks that specific elements/screens are present after the initialization?
InitAllSettingsTestCase
MainTestCase
ProcessTestCase
InitAllApplicationsTestCase
 
 
 
 
6. A developer has designed a project featuring a flowchart. The developer then obtained a business modification request as stated below:

1. If the Customer Name includes special characters, the robot must eliminate them before proceeding with the process.
2. If the Customer Name contains only letters, maintain the current logic without making any changes.

To incorporate the new requirement according to UiPath best practices, which activity should the developer utilize in the flowchart?

If
Flow Switch
Flow Decision
Else If

Explanation

Topic: Advanced Topics in Automation

 

7. A developer is tasked with automating a system that reads data from invoices and inputs the extracted data into a different system.

Given that, each invoice can be processed independently, without any specific sequence needed, what type of automation project would be best suited for this scenario?

Iterative Process
Transactional Process
Linear Process
Library
 
 
8. A developer extracts a date from an email. The date will always be in the same format and always from the past. Some examples of this format are: "3 Mar 2023", "20 Nov 2021". The name of the variable where the date is saved is DateString. What expression should the developer use to check if the extracted date is within the last 7 days?
 
(DateTime.now - DateTime.Parse(DateString)).Days < 7
(DateTime.Now - DateTime.ParseExact(DateString, "dd mm yyyy", CultureInfo.InvariantCulture)).Days < 7
(DateTime.Now - DateTime.ParseExact(DateString, "dd MMM yyyy", CultureInfo.InvariantCulture)).Days < 7
DateTime.Parse(DateString).AddDays(-7) > DateTime.Now
 
 

 

9. What is the purpose of the CV Screen Scope activity in UiPath?
To create a separate window for interacting with the target application during automation.
To establish a connection to the neural network server and enable the analysis of the UI of applications.
To display real-time UI changes in target applications for debugging purposes.
To capture screenshots of application UIs and save them for future reference.

Explanation

Topic: Use AI Computer Vision features in projects.

 

10. A developer automated a process in the REFramework using Orchestrator queues. In which state(s) is the status updated to Successful for each Transaction Item from the queue?

Initialization and Get Transaction Data.
Process Transaction only.
Initialization and Process Transaction.
Get Transaction Data only.

 

댓글