








Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Community
Ask the community for help and clear up your study doubts
Discover the best universities in your country according to Docsity users
Free resources
Download our free guides on studying techniques, anxiety management strategies, and thesis advice from Docsity tutors
What is Performer in UiPath? - ✔✔Performer which receives the queue items from the Orchestrator Queue then process it.
Typology: Exams
1 / 14
This page cannot be seen from the preview
Don't miss anything!
What is Performer in UiPath? - ✔✔Performer which receives the queue items from the Orchestrator Queue then process it. Which of the following data types can be stored as Assets? - ✔✔Integer, Text, Bool and Credential Which options can be used to end the execution of a running process smoothly? - ✔✔Stop Which activity is linked with the Stop command in Orchestrator? - ✔✔Should Stop Activity Which UiPath component is used to design and develop automation projects? - ✔✔UiPath Studio Is UiPath Studio Enterprise Edition Free? - ✔✔No, it is paid What are the Type of Assets available in UiPath? - ✔✔Text - It is used to store only string/text values Bool - It is used to store True or False values Integer - It is used to store only numbers Credential - It is used to store username and password Type of Robot According to the Robot & Machine Interaction - ✔✔Standard Robot - Works on a single Standard Machine only. This is ideal for the scenario in which a user always works on the same machine. Floating Robot - works on any machine defined in Orchestrator, be it Standard or Template, as the machine name is not relevant while creating it. Only Attended and Development Robots can be floating. How many Job States are available in UiPath Orchestrator? - ✔✔Pending, Running, Successful, Faulted, Stopping, Terminating, Stopped
How many Queue Status are available in UiPath Orchestrator? - ✔✔There are 7 Ques Status that is available in UiPath Orchestrator. New - Item added to Queue and not processed In Progress - Item picked for processing in Queue Failed - When the item did not meet a business or application requirement within the project. Successful - the item processed successfully Abandoned - The item remained in the In-Process status for a long period of time (about 24 hours) without being processed Retired - The item failed with an application exception and was retired Deleted - The item has been manually selected from the Transactions page and marked as deleted What is Argument in UiPath? - ✔✔Arguments are used to pass data from one workflow to another in Project. In a global sense, they resemble variables, as they store data dynamically and pass it on. Variables pass data between activities, while arguments pass data between automation. List the different types of RPA Tools - ✔✔UiPath, BluePrism, Automation Anywhere, WorkFusion, OpenSpan Pega, Win Automation, Nice, Kofax, Redwood, Automation Edge, AntWorks What are the Differences between Basic and Desktop Recording? - ✔✔Basic Recording
Transactions if required and logging the status of all processed transactions, failed or successful. It helps developers to build processes quicker, robust and apply best practice. Init - read configuration, initialize applications Get Transaction Data - Read transaction item from Input sources (Queue, Excel, etc.) Process Transaction - Process the transaction item End Process - Close all applications and End the Execution. What is PDD? - ✔✔Process Definition Document (PDD) - Captures the flow of business process to be developed within RPA. PDD usually has flowchart which has business process to be automated at high level. What is SDD? - ✔✔Solution Design Document (SDD) - contains design & architecture of a software helping team to understand the software. What is the difference between While Loop, Do-While Loop & For Each? - ✔✔While Loop - It evaluates the condition first, If condition specified is true then the set of actions in the body are executed Do While Loop - Action is executed once and then it evaluates the condition, if the condition is met, the actions are executed again. For Each Loop - works by iterating through a list of items, one item at a time and executing whatever actions are in the body What is environment? - ✔✔Is a group of Robots which is used to deploy processes. Difference between Break and Continue - ✔✔Break activity - enables you to stop the loop at a chosen point, and then continues with the next activity Continue - enables you to skip the current iteration inside a For Each Loop
Same way, in UiPath, Dictionary is a collection of Keys and Values, where key is like word and value is like definition. Every Dictionary has pairs of keys and values How to initialize Dictionary in UiPath? - ✔✔Dictionary = new Dictionary (Of String, Object) Where Dictionary Variable Type is below: System.Collections.Generic.Dictionary <TKey, TValue> - Dictionary<String, Object> What is Queue in UiPath? - ✔✔Queue is a container which can hold an unlimited number of items. It is used to distribute the work items to Robot. It is used to assign works to multiple robots What happens if the status of a Transaction that is "In Progress" is not updated within 24 hours? - ✔✔Status is changed to Abandoned Where can you check whether a job was scheduled or manually started? - ✔✔Go to the Jobs page and check the Source column What is Transaction in Queue? - ✔✔A set of arguments that was added to a Queue and has been processed by a robot. Difference between Full Selector & Partial Selector? - ✔✔Full Selectors - Contain all the elements needed to identify an UI Element, including the top-level window. Generated by the Basic recorder. Partial Selectors - Activities containing partial selectors are enclosed in a container (Attach Browser or Attach Window) that contains a full selector of the top-level window. Generated by the Desktop recorder. It does not contain information about the top-level window. What is the use of Repair Selector? - ✔✔It is used to re-indicate the same target UI element and repair the Selector. The button is available only when the selector is invalid. Difference between Step into & Step over in UiPath? - ✔✔Step into - It is used to debug project step by step
Step over - It is used to debug project and step over the activity for fast execution What are the directions available of Argument? - ✔✔In - Argument can only be used within the given proejct Out - The argument can be used to pass data outside of a given project. In/Out - The argument can be used both within and outside of a given project Property - Not in use Where can you check whether a job was scheduled or manually started? - ✔✔Go to the jobs page and check the Source column Processes where change is frequent and multiple manual actions are required can this be automated using UiPath RPA? - ✔✔No RPA COE Teams - ✔✔RPA Developer, Solutions Architect, Business Analyst, Implementation Manager, Infrastructure Engineer, RPA Support What is UiPath StudioX? - ✔✔UiPath StudioX is ideal for business users who want to create task automation for personal use What are the Robot Statuses? - ✔✔Available - The Robot is not running a process and is free to be used Busy - The Robot is running a process Unresponsive - The robot and Orchestrator have not communicated in the last two minutes
Rethrow - Rethrow activity is used to throw the existing exception caught in Catch Block and stop the execution of the Projects. It can only be used in the Catch block What is Connection String? - ✔✔Connection String is a collection of information which is used to connect UiPath (Any application) with the Database. It requires few information for ex: Server, Name, Database, User ID, password, etc. Which activity is used to Insert Data from Data Table to SQL table? - ✔✔Insert Activity Which activity is used to Add Queue Items from Data Table to Queue without using For Each row? - ✔✔Bulk Add Queue Items Activity Why can't we put Credential as Text Type instead of Credential Type? - ✔✔Credential is secure while Text Type is not secure. In Text Type, your password will be visible but In Credential Type, it is not visible How to Trigger a Job/Process when at least 20 items added to Queue? - ✔✔You can add Queue Trigger by navigating to Trigger Page and Click on Queue Trigger. Link process with Queue which needs to be executed and enter 20 in option Minimum number of items to trigger the first job. Explain Application Exception? - ✔✔Application Exception - occurs when an app you are automating fails or is not responding or selector not found. For example, if application is closed by mistake and Robot is trying to process the item then it will throw an error is called Application Exception and can be retired/resolved by Retrying it. Explain Business Exception? - ✔✔Business Exception - Should be used when a certain transaction value does not meet a business requirement. For example: as per client, if Cash In Amount is greater than $ 1000 then Robot should skip that item and mark as "Failed" with Business Exception and Proper reason.
How to Encrypt and Decrypt Files? - ✔✔Encrypt File Activity - Is used to Encrypt the File to make the files secure Decrypt File Activity - Is used to Decrypt the file while processing How to Encrypt and Decrypt Text? - ✔✔Encrypt Text Activity - used to Encrypt the text. It can be used to insert encrypted text to Database or Queue to make our data secure Decrypt Text Activity - is used to decrypt the text. It can be used to retrieve decrypted text from Database or Queue to process it. What is the use of Find Children Activity in UiPath? - ✔✔It is used to Retrieve a collection of children UI Elements. It is mostly used to get all the data from Drop Down using Find Children and Get Attribute Activity Can a package be downloaded from Orchestrator? - ✔✔Yes Which data type is used for extracting data from a Microsoft Excel file using a Read Range Activity? - ✔✔DataTable Which Activity can be used to retrieve the value from a certain cell, from a DataRow Object? - ✔✔Get Row Item Activity Which type(s) of automation does UiPath support? - ✔✔Attended, Hybrid, and Unattended Automation Which UiPath Studio panel can be used to change the scope of a variable? - ✔✔Variables Panel In order to show only filtered MailMessage variables, which activity should be used? - ✔✔Get Outlook Mail Messages Which wildcard characters can be used while editing a selector? - ✔✔"*" and "?"
What are the main states of a typical RE- Framework project? - ✔✔Init State, Get Transaction State, Process Transaction State, End State How should the Dispatcher & Performer model be applied to run continuously? - ✔✔The jobs should run independently on separate machines What does a Dispatcher do? - ✔✔It reads the data and populates a queue Why is it recommended to have the RE - Framework settings and configuration values stored in a separate file and read during the initialization? - ✔✔Project maintenance is efficient: changing the content of a config file is easier than changing the proejct What type of project is the Re-Framework built on? - ✔✔State machine Which of the following are capabilities of Orchestrator? - ✔✔Monitor process execution, provision robots, deploy processes for execution, etc. What are the types of Robots that can be configured for usage in Orchestrator? - ✔✔Attended Robots, Unattended Robots, Development Robots, Non-Production robots What is a process in Orchestrator? - ✔✔A package published from Studio to Orchestrator and allocated to an Environment How long will the Robot try to find an UI Element (if it is not available) on the desktop? - ✔✔the value in milliseconds of the activity's Timeout MS property How can a process in Orchestrator be executed? - ✔✔From Orchestrator - by starting a Job or by creating a Schedule and From the Robot tray, if the package is allocated to the Robot (or Environment) Can a Robot be added to multiple Environments? - ✔✔Only if the Environments belong to the same Organizational Unit
Send Outlook Mail Message activity will work without having Microsoft Outlook installed. True or False - ✔✔False What activity can you use to send an email without entering the Username and Password of the email account? - ✔✔Send Outlook Mail Message If the PDF activities are not listed in your Activities panel, how can you get them? - ✔✔Install UiPath.PDF.Activities package from Manage Packages How can a robot read only the first page of a PDF file, using the PDF activities? - ✔✔Set the Range property to: " 1 " What is the most effective way to handle the click on a UI Element that is not always available? - ✔✔Place the Click activity inside a Try/Catch block