본문 바로가기
UiPath

[UiPath] ADP Dump 05

by 린앤율맘 2023. 12. 26.

[Comment]

- 헷갈리거나 답 확인용 문제 정리

 

1. A developer is debugging a workflow and the Executor is pointing to the Log Message activity as shown in the following exhibit:
Currently, the value of "rowIndex" variable is "15". There are 285 more rows left in the data table.




Which button should be clicked in order to quickly execute the Log Message activity for the remaining rows and make the Debugger immediately finish the For Each Row in Data Table activity?

 

Step Over
Step Into
(정답) Step Out
Break
Continue

 

5. 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?
 
Get Transaction Data only.
Process Transaction only.
Initialization and Get Transaction Data.
Initialization and Process Transaction.
 
 
 
6. 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 verifies the compatibility of installed extensions on the remote server and updates them if necessary.
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
 
16. How can you use the Delayed Screen Refresh button in the Computer Vision wizard?
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.
To synchronize multiple screens refresh simultaneously with a 3-second delay.
(정답) To perform a refresh of the target app with a 3-second delay.
 
 
17. 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
 
 
 27. Where in the REFramework is the "Config.xlsx" file read?  
 
In the Process Transaction state, InitAllApplications.xaml.
In the Initialization state, InitAllSettings.xaml.
In the Get Transaction Data state, GetTransactionData.xaml.
In the Initialization state, InitAllApplications.xaml.
 
 
31. In which workflow(s) is the Queue Item status updated in a regular REFramework Performer process?  
 
(정답) GetTransactionData.xaml and SetTransactionStatus.xaml.
SetTransactionStatus.xaml only.
Process.xaml and SetTransactionStatus.xaml.
GetTransactionData.xaml and Process.xaml.

 

(New) 41. When performing Remote Debugging using a Remote Machine connection, Studio sends the list of project dependencies to the remote robot. From where does the remote robot download the required packages?

Studio local NuGet cache.
Activity feeds configured in Studio.
Orchestrator feeds and Robot activity feeds.
Orchestrator feeds and UiPath Official activity feed.
[풀이] Depending on the type of connection used for remote debugging, the remote robot gets the activity packages required to execute a project as follows:
  • Remote machine connection - Studio sends the list of project dependencies and activity feeds (package sources) to the remote robot, which uses the feeds provided by Studio to download the required packages.
  • Unattended robot connection - Studio sends only list of project dependencies to the remote robot, which uses the Orchestrator feeds and the activity feeds configured on the remote robot to download the required packages.
 
42. 

Considering that the attached table is stored in a variable called "dt":



What will be the result of the following LINQ query?

"dt.AsEnumerable.Count(Function(x) x("Item").ToString.Equals("apple"))"

 

(정답) 3

 

17
27
"27"
 
45. A developer found a bug in one of the transitions shown below (both conditions are the same):

 



What transition/transitions will be executed in this situation?

 

System Exception.
Successful and System Exception.
No condition, the state will remain in a hanging state.
(정답)Successful.

 

 

(답 확인 필요, variable to 0 아닐까?) 49. 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.
In the configuration file (Config.xlsx) establish the MaxRetryNumber variable to 1.
Assign a value to the out_TransactionItem variable in the GetTransactionData workflow only when the in_TransactionNumber is 1.
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.

 

(답 확인 필요, Sequential 아닐까?)59. A developer is using the Dispatcher-Performer model in UiPath to create a workflow where the Dispatcher component, constructed within the REFramework, adds data from a data table to a queue. What type of automation project would be most fitting for this Dispatcher implementation?

 

Iterative Process
Sequential Process
Transactional Process
Linear Process
 
[풀이] 
  1. Dispatcher : The Dispatcher is responsible for gathering data or tasks from external sources (e.g., files, databases, queues) and queuing them for processing.
  2. Performer : The Performer(s) then execute the tasks based on the data provided by the Dispatcher. This model is commonly used in scenarios where you need to process large volumes of data or perform repetitive tasks.

 

'UiPath' 카테고리의 다른 글

[UiPath] ADP Dump 07  (0) 2024.01.18
[UiPath] ADP Dump 06  (0) 2024.01.17
[UiPath] ADP Dump 04  (1) 2023.12.22
[UiPath] ADP Dump 03  (0) 2023.12.21
[UiPath] ADP Dump 02  (0) 2023.12.20