본문 바로가기
UiPath

[UiPath] ADP Dump 04

by 린앤율맘 2023. 12. 22.

[Comment]

 

- 헷갈리거나 새로운 문제 위주로 정리 

- 이제 대부분의 답은 정확도 100%나 몇 가지는 확인 요망

 

7. Which method can be used to perform LINQ operations on DataTables and Lists in VB.NET?

(정답) Using the Assign activity to apply LINQ operations directly.
Using the Excel Application Scope activity to perform LINQ operations.
Using the Write Cell activity to execute LINQ operations in Excel.
Using the Invoke LINQ Functions activity to apply LINQ operations directly.

 

14. What is the correct statement regarding the differences between Window Messages and Simulate input methods?
(정답) Window Messages has hotkey support.
Simulate does not have hotkey support. 
 
Window Messages has a better speed than Simulate.
 
Window Messages is compatible with 80% of the applications.
Simulate is compatible with approximately 100% of the applications.
 
Window Messages does not work in the background.
Simulate does work in the background.
 
 
16. A developer completed the following sequence of steps:

1. Created a process with the REFramework.
2. Published the package to Orchestrator.
3. Created a job for it.

After completing these steps, the job starts fromOrchestrator and processes transactions. After processing two transactions, the job is stopped from Orchestrator.

During which state in theREFrameworkwill the jobStop Signal be recognized?
 
End Process
(정답) Get Transaction Data
Process Transaction
Initialization
 
 
18. 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?
 
Else If
If
(정답)Flow Decision
Flow Switch
 
 

20. When using REFramework without Orchestrator access, what is the best practice to ensure that a transaction will be retried in case a System Exception occurs during its processing?

Create a queue in Orchestrator with the "Max # of retries" greater than 0.
Use a Retry Scope activity within the Process Transaction state.
Use a Try Catch activity with a Retry Scope activity in the Catch block defined for System Exceptions.
(정답) Set the MaxRetryNumber in the Config.xlsx file to a number greater than 0.

 

(정답 확인 필요) 24. A developer designed two automation projects to work with an Orchestrator queue. One is a Dispatcher and the other is a Performer. Which activity is required to be used in the Performer project?
Add Transaction Item
Delete Queue Items
Add Queue Item
Get Transaction Item
Wait Queue Item
 
 
25. A developer has followed UiPath best practices while automating a process using the REFramework. A large number of Orchestrator assets of type Integer are needed for the process.

Where in the "Config.xlsx" file should the names of the Integer assets be referenced?

 

A new sheet
Constants sheet
(정답) Assets sheet
Settings sheet

 

26. Which of the following is a characteristic of the Final State in a State Machine?

 

Must have at least one Transition configured from the Final State.
(정답) A State must be connected to a Final State.
A Final State contains the Transitions and the Exit sections.
A Final State can only transition to another Final State activity.

 

 

35. What is a major benefit of a REFramework Performer process with Orchestrator queues?

The same robot processes all Queue Items concurrently.
(정답) Several robots simultaneously execute the same process from a single queue.
Prepare the data in a unitary format in queues.
Retrieve data from various sources and directly adds them to the queue.
 
36. Based on the UiPath best practices, when a Business Rule Exception occurs while processing an item from an Orchestrator queue, what is the transaction item status that should be set to that particular Queue Item?

 

Business Exception
In Progress
Verified
Fatal
Exception
(정답) Failed
 
(New) 37. After installing UiPath Remote Runtime, what automatically happens at every user login on the remote server?

 

(정답) A task in the Task Scheduler starts the UiPathRemoteRuntime.exe process for every user logged in.
The UiPathRemoteRuntime.exe process automatically configures the remote server for optimal automation performance.
The UiPathRemoteRuntime.exe process launches a dedicated UiPath Studio instance for each user.
The UiPathRemoteRuntime.exe process verifies the compatibility of installed extensions on the remote server and updates them if necessary.
 
(정답 확인 요망) 38. What actions should be taken by a developer to transform a REFramework process into a linear process?
In the configuration file (Config.xlsx) establish the MaxRetryNumber variable to 0.
 
Within the scope of the GetTransactionData workflow, set the value of the out_TransactionItem variable to Nothing, indicating the absence of any assigned transaction item.
 
Assign a value to the out_TransactionItem variable in the GetTransactionData workflow only when the in_TransactionNumber is 1.
 
In the configuration file (Config.xlsx) establish the MaxRetryNumber variable to 1.
 
 
(답확인) 41. Where in the REFramework is the "Config.xlsx" file read?
 
 
 
 
 
43. In which workflow(s) is the Queue Item status updated in a regular REFramework Performer process?
 
(정답) GetTransactionData.xaml and SetTransactionStatus.xaml.
 
GetTransactionData.xaml and Process.xaml.
 
Process.xaml and SetTransactionStatus.xaml.
 
SetTransactionStatus.xaml only.
 
[Tip] In which workflow(s) is the Queue Item status updated in a regular REFramework Performer process?  (답: GetTransactionData.xaml and SetTransactionStatus.xaml. )
 
46. How can you use the Delayed Screen Refresh button in the Computer Vision wizard? (4)
 
(정답) To perform a refresh of the target app with a 3-second delay.
 
To synchronize multiple screens refresh simultaneously with a 3-second delay.
 
To pause the Computer Vision analysis for a specified period of time before resuming.
 
To delay the execution of the current action until the user manually allows it.
 

 

49. When building an automation for a booking company as part of a larger project initiative, a developer should follow the high-level steps:

 

1. Retrieve emails from the company-wide Bookings Microsoft Outlook Inbox account.
2. Extract the booking data from the current email.
3. Add individual reservation data to the Orchestrator queue.
4. Log in to the company's desktop application.
5. For each Queue Item:

 

(정답)4 - 6
5 - 6
1 - 4
1 - 3

 

 

54. What is a major benefit of a REFramework Dispatcher process using Orchestrator queues?

(정답) Improved error handling when extracting data from multiple sources and directly adding it to queues.
Guarantees that all data follows a consistent format and fetches information from an Orchestrator queue.
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.

 

56. Which of the following examples correctly demonstrates the appropriate usage of Remote Runtime for automating virtual environments in a UiPath project?

Applying Remote Runtime to encrypt and protect sensitive data being transferred between a local machine and a remote virtual environment.
Employing Remote Runtime to run and debug a UiPath project on a local machine while simultaneously monitoring its execution on a remote virtual machine.
(정답) Using Remote Runtime to seamlessly interact with UI elements on a virtual machine, where traditional selectors may not be reliable.
Utilizing Remote Runtime to execute a UiPath script on a virtual machine while running the main UiPath Studio application on a local machine.

 

60. Which Log Levels will be displayed if a user of UiPath Orchestrator filters the severity to Error for UiPath Robots' logs?

Error only.
Info, Warn, and Error.
(정답) Error and Fatal.
Warn and Error.

'UiPath' 카테고리의 다른 글

[UiPath] ADP Dump 06  (0) 2024.01.17
[UiPath] ADP Dump 05  (0) 2023.12.26
[UiPath] ADP Dump 03  (0) 2023.12.21
[UiPath] ADP Dump 02  (0) 2023.12.20
[UiPath] ADP Dump 01  (1) 2023.12.20