How would you define a linear process in UiPath?
A. The steps of the process refer to the execution of steps in a sequential manner, where each subsequent step depends on the successful completion of the previous step.
B. The steps of the process are performed multiple times, but each time different data items are used.
C. The steps of the process repeat multiple times over different data items. However, the automation design is such that each repeatable part processes independently.
D. The process steps are performed only once. If the need is to process additional data, then the automation must execute again.
In the context of a linear process, implemented with REFramework, how many times will the process enter the Get Transaction Data state?
A. 1 time.
B. 2 times.
C. The process will not enter the Get Transaction Data state because a linear process is not transactional.
D. Until there are no more queue items left unprocessed in Orchestrator.
When a developer runs a process using the REFramework, with the process utilizing Orchestrator queues and a queue already created with the Name provided and the Auto Retry function disabled, which states will be executed without errors?
A. Initialization -> Get Transaction Data -> Process Transaction -> End Process
B. Initialization -> Get Transaction Data -> End Process
C. Initialization -> Process Transaction -> End Process
D. Initialization -> End Process
What is the output type returned when using a Get Test Data Queue Item activity?
A. QueueItem
B. Object
C. Dictionary
What actions must be manually selected in the App/Web Recorder before recording a step?
A. Select or clear a check box. Send keyboard shortcuts using your keyboard. Select an item from a drop-down.
B. Copy text using the Get Text activity. Hover over an element using the Hover activity. Highlight an element using the Highlight activity.
C. Copy text using the Get Text activity. Hover over an element using the Hover activity. Click on buttons, links, and other clickable elements such as icons or images. Type text in a text area such as a text box. Select or clear a check box.
D. Click on buttons, links, and other clickable elements such as icons or images. Type text in a text area such as a text box Select or clear a check box. Send keyboard shortcuts using your keyboard. Select an item from a drop-down.
Which of the following credentials stores have built in support in Orchestrator?
A. CyberArk CCP, Cisco, Google Credentials, CyberArk, Azure Key Vault.
B. CyberArk CCP, Azure Key Vault, Google Credentials, Amazon Security Services.
C. Azure Key Vault, CyberArk CCP, HashCorp Vault, Thycotic Secret Server, BeyondTrust, CyberArk.
D. Cisco, Amazon Security Services, Google Credentials, Microsoft SCS, IBM Vault.
A developer is using a Type Into activity with the Input Method set to Simulate. Which property needs to be enabled for the activity to execute even if the target UI element is deactivated or read-only?
A. Deselect at end.
B. Alter disabled element.
C. Activate.
D. Click before typing.
Review the following graphics:


If the automation is executed and Notepad.exe is not running, which Log Message text value is contained in the Output panel?
A. ApplicationNotFoundException
B. SelectorNotFoundException
C. Try
D. Exception
Considering that the attached data table is stored in a variable called "dt":

Which of the following expressions will throw an exception during execution?
A. dt.AsEnumerable.Where(Function(x)x("Item").ToString.Equals("strawberry"))
B. dt.AsEnumerable.Any(Function(x)x("Item").ToString.Equals("strawberry"))
C. dt.AsEnumerable.FirstOrDefault(Function(x)x("Item").ToString.Equals("strawberry"))
D. dt.AsEnumerable.First(Function(x)x("Item").ToString.Equals("strawberry"))
A developer designed a project in the REFramework. The "Config.xisx" has the following Setting entry:

Assuming the default REFramework configuration, how can the developer reference the Setting in the Config variable to obtain the Setting value as a String from the dictionary?
A. Config("OrchestratorQueueName", "ProcessABCQueue").ToString
B. Config("OrchestratorQueueName").ToString
C. Config("ProcessABCQueue", "OrchestratorQueueName").ToString
D. Config("ProcessABCQueue").ToString