RPA Study Zone UiPath Fundamentals UiPath Fundamentals You will be given 50 random questions.Good luck! Category: Orchestrator 1. How can an organization enforce custom rules pertaining to their needs across all projects, in a centralized manner? Using UiPath Automation Ops Using UiPath Automation Hub Using UiPath Studio Using UiPath Orchestrator Category: Studio 2. Which of the following pieces of information cannot be stored in an Orchestrator asset? A set of credentials A URL A table A number Category: Orchestrator 3. Which of the following type of process uses the User Interface? Foreground process. Headless process. Background process. Category: Studio 4. Which debugging option in UiPath Studio allows you to pause the execution before a specific activity and perform additional actions? Run to this activity Step Over Step Into Create test bench Category: Studio 5. Which output method cannot capture text position? OCR Native Full Text Category: Studio 6. What does Studio do when running a Workflow Analysis? Run only analysis Run validation first and then analysis Run just validation Run analysis first and then validation Category: Studio 7. Which of the following prerequisites does your setup need to meet for you to be able to use the Object Repository? (Choose all that apply) Action Center enabled UiPath.UIAutomation.Activities package versions 2020.10 and above Data Service enabled Modern Design Experience enabled in the project Category: Studio 8. Which layout would you choose when creating a process with multiple branches of decisions? State Machine Sequence Flowchart Category: Studio 9. You are extracting a UI Library from a Process type project. You have completed extracting the elements and published the Library.How would you make sure the elements used in the starting project can be automatically updated when the UI Library is updated? You don't need to change anything. The Library is set as a dependency by default. Import the Library back into the project and remove the Project UI Descriptors in the Object Repository. Import the UI Library back into the Project and manually pair the UI Activities with the elements in the Library. Category: Orchestrator 10. Active Directory users can be configured in Orchestrator only to have an Unattended Robot automatically created, but not an Attended Robot. False True Category: Studio 11. Which of the following scenarios triggers the Retry Scope to retry the contained activities? (select all that apply) As long as an error is thrown. As long as the condition is not met. As long as the condition is met and an error is thrown. As long as the condition is met. Category: Orchestrator 12. The status of a queue item is typically updated by a robot called... Queue Robot Dispatcher Performer Category: Studio 13. Check App State activity can be used as a condition for the Retry Scope activity. False True Category: Coding Fundamentals 14. What's the main difference between the While and Do While? The While activity evaluates the condition before executing the body of the loop, while the Do While activity evaluates the condition only after executing the body of the loop once. The While activity evaluates the condition after executing the body of the loop, while the Do While activity evaluates the condition before executing the body of the loop. There is no difference between the While and Do While activities in terms of when the condition is evaluated. Category: Studio 15. Which action does the Play button in the Ribbon take by default? Run project Run current file Debug current file Debug project Category: Studio 16. How can values be passed from one workflow to another? With arguments and global variables With arguments and variables Only with variables Only with arguments Category: Studio 17. What differences between versions of the workflow files can you see in the Show Changes and Solve conflicts windows? Added workflows Added activities Removed workflows Modified activity properties Modified activity properties Category: Studio 18. The workflow contains a Get Text Activity and the scraping method is set to Full text. While running the automation, the application is minimized. What's the outcome of the Get Text Activity? It throws an error. It extracts the correct required text. The Get Text activity doesn't allow you to select the scraping method. It extracts both the text and the text position. Category: Orchestrator 19. Which of the following entities need to be mapped to the folder in order to run an unattended job? (select all that apply) Machine template Package Queues Process User or Robot Category: Orchestrator 20. By default, the data stored in a queue item... Is in a free format, but a specific format can be set. Is in a free format, but a specific format can be set. Is in a free format and cannot be changed to a structured format. Category: Orchestrator 21. True or False: multiple triggers can be defined for a connection, and each trigger can have a different polling interval. False True Category: Orchestrator 22. What capability of Orchestrator is described by the following statement: "Creates and maintains the connection between Robots and the web application"? Configuration Monitoring Inter-conectivity Provisioning Category: Studio 23. What is the supported variable type in the Output property field of all Get Mail activities (POP3, IMAP, Outlook, Exchange)? List <MailMessage> String List <IResource> MailMessage Category: Studio 24. Which of the following UI Element targeting methods can be used in UI Element descriptors? (select all that apply) Local Path Anchor Fuzzy Selector Strict Selector Image Category: Studio 25. We can add the Get Text activity by using: Activity Panel Recorder Property Panel Project Panel Category: Studio 26. What activity can we use to create a new DataTable based on filtered values from an existing one? Filter Data Table Generate Data Table From Text Merge Data Table Sort Data Table Output Data Table Category: Studio 27. Which two sentences are true about Robot Execution Logs? They provide information related to the Robot itself and its context. They are messages generated by the execution of a process. They contain only user-defined fields by using the Add Log Fields activity. They can be either default logs or user-defined logs. Category: Studio 28. Once set, the value of a global variable cannot be changed during runtime. True False Category: Studio 29. How do you add an element to an Array at runtime in Studio? myArrayVariable.push("element") You can't add an element to an array at runtime myArrayVariable.add("element") Add To Array activity Category: Studio 30. Where will the results of workflow analysis be displayed? IN the logs by clicking Open Logs in the Debug Ribbon In the Error List Panel In the Watch panel In the Output Panel Category: Studio 31. Which is the fastest output method? Native Full Text OCR Category: Studio 32. You are saving the input from users to a variable of string type in Main.xaml. The user info is stored in an Excel spreadsheet by a Write Range activity added in WriteData.xaml. WriteData.xaml is invoked in Main.xaml.What direction will your argument have? Out In/Out Property In Category: Studio 33. Which activity is being described by the following statement "Provides a way to try a block for a predefined number of times in case there are any exceptions or a particular condition is not met"? Try Catch Retry Scope Throw Rethrow Category: Studio 34. What is the easiest way to get the invoice number from a native PDF file? Use the Read PDF with OCR activity and get the value by using string manipulation. Use the Get Text activity. Open the PDF file with Adobe Acrobat Reader and scrape only the relevant information. Use the Read PDF Text activity and get the value by using string manipulation. Category: Studio 35. The Pick activity in UiPath allows you to monitor multiple input sources simultaneously and execute the appropriate branch of activities based on the first available input. False True Category: Orchestrator 36. If a company's Orchestrator consists of multiple tenants, will the libraries be shared between the tenants? Yes It depends on the configuration No Category: Orchestrator 37. Which of the following statements about storage buckets is true? Orchestrator admins can't edit user access rights to storage buckets. Orchestrator admins can toggle between read-only and write privileges for each storage bucket. All storage buckets in Orchestrator are read-only. Category: Studio 38. Which of the following types of information can you find in the Locals Panel? (Choose all options that apply) The value of the variables. Properties of current activity. Exceptions. The value of the expressions. A cumulative percentage of the execution time of each activity. Category: Studio 39. What happens when we publish an automation process to the Orchestrator Personal Workspace? A process is created automatically if one doesn't already exist, and existing processes must be manually updated to the latest published version. If there isn't already an existing process, we must go into Orchestrator and manually create one with the same name as the Studio project. A process is created automatically if one doesn't already exist, and existing processes are automatically updated to the latest published version. Category: Studio 40. If we have a default design experience set at the Studio level, and from the project setting, it's set as to use global settings, which experience activities will be available to use? Classic Modern Category: Studio 41. The Verify Execution property is available for which three of the following activities in UiPath? Hover activity Assign activity Click activity Type Into activity Category: Studio 42. You have just updated a UI Library dependency in a Process type project. The new version of the Library contains updates to elements that are already used in activities in your project.You now need to manually update the activities that were paired with the old versions of the elements. True False Category: Studio 43. What is one way to add an activity to a workflow? Left-click on the + where you want the activity to go, and choose from the dropdown list Right-Click on Project > Add > Sequence Right-click where you want activity to go and click Run to this Activity In the Project Panel, filter on the activity, and drag and drop onto workflow Category: UiPath General 44. What are the core UiPath components? Studio Robots Orchestrator Automation Hub GIT Category: Studio 45. What container do you need to add to be able to use Modern Excel activities? Use Excel File No container is needed Use Application/Browser Excel Application Scope Category: Studio 46. Which of the following targeting methods would you most likely enable when building a Descriptor with a variable tied to a given identifier for the name attribute? Image Fuzzy Selector Strict Selector Category: Studio 47. Which of the following prerequisites does your setup need to meet for you to be able to use the Object Repository? (select all that apply) Action Center enabled UiPath.Uiautomation.Activities package versions 2020.10 and above Modern Design Experience enabled in the project Data Service enabled Category: Studio 48. Where does changing a variable in the Immediate Panel reflect? (Choose all options that apply) The Locals panel The Watch panel Going forward in your execution The output panel Category: Studio 49. When you drag and drop an element or screen from the Object Repository, the object's image, arguments, and other details are automatically added to the activity. True False Category: Studio 50. You've just created a new project in UiPath Studio. You want to create a local repository and copy the project to it. Which of the following options in UiPath Studio allows you to do both? Git Init Copy to Git Connect to Git Clone Repository Your score isThe average score is 0% 0% Restart quiz