RPA Study Zone UiPath Fundamentals UiPath Fundamentals You will be given 50 random questions.Good luck! Category: Studio 1. Which activity is being described by the following statement: "When checking whether a particular condition is met, only activities that return a Boolean value can be used in the Condition block (e.g. IsTrue, IsFalse, Element Exists)"? If Try Catch Retry Scope Switch Category: Studio 2. What is one way to add an activity to a workflow? Right-click where you want activity to go and click Run to this Activity Right-Click on Project > Add > Sequence In the Project Panel, filter on the activity, and drag and drop onto workflow Left-click on the + where you want the activity to go, and choose from the dropdown list Category: Studio 3. Which package enables retrieving email messages using POP3 protocol? UiPath.Mail.Activities GoogleWorkspace MicrosoftOffice365 Category: Studio 4. How can we combine rows from two tables by using values common to each other according to a rule? By using the Join Data Tables activity By using the Merge Data Table activity By using the Sort Data Table activity By using the Remove Duplicate Rows activity Category: Studio 5. What is the functionality of the "Show all matches" option in the context of UI automation? Highlights all User Interface or UI Elements identified by selected targeting method. Highlight only duplicate User Interface elements, identified by selected targeting method. Makes the selection more reliable. Category: Studio 6. What does branches allows you to do? Develop and test various features in parallel. Manage workflow files. Compare different versions of the project. Compare between different projects. Category: Studio 7. How can you pause the running of a process in debug mode? By toggling a breakpoint an activity By enabling Highlight Element before debugging By clicking on Step Out during debug mode By using Step Into in debug mode Category: Orchestrator 8. 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: Studio 9. 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: Studio 10. How can a robot read only the first page of a PDF file using the PDF activities? Set the Range property to “1”. Set the Range property to 1. Set the Range property to “All”. Set the Range property to "0". Category: Studio 11. What activity would you use to eliminate an unnecessary column in a DataTable? Remove from Collection Delete Data Column Remove Data Column Delete from Collection Category: Studio 12. What is a selector? A container for UI elements. An activity used to select an element The unique ID of an UI element. The “path” to the UI element, starting from the root, all the way to the target element. Category: Studio 13. Which property of the Check App State activity in UiPath specifies the maximum amount of time to wait for the application state to change? RetryInterval WaitTime Timeout Delay Category: Studio 14. Data Table cells are identified through the Column Name or Column Index and by the Row Index, both starting from zero. A spreadsheet cell is identified by a column letter and a row number starting at one. False True Category: Studio 15. When should we use the If activity in studio? When we want to write a message to output When we want to assign a value to a variable When we want to rename a file When we want to choose one of two options Category: Studio 16. Consider an unattended robot running the maximum number of jobs set at machine template level -4, with one being a foreground process. There are two jobs pending: a foreground job with normal priority and a background process with a high priority. Which of the two jobs will be executed first? We can't tell, given that we don't know the type of job being run The background job, because it has a higher priority The foreground job, because it involves UI Category: Studio 17. Which of the following types of information can you find in the Locals Panel? (select all that apply) Exceptions. The value of the expressions. The value of the variables. Properties of current activity. A cumulative percentage of the execution time of each activity. Category: Studio 18. Which of the following options correctly represents the Integration Service? (select all that apply) Connections Connectors Links Triggers Category: Studio 19. It is necessary to declare scope when creating an Argument False True Category: Studio 20. What do branches allow our team to do? Compare between different projects Develop and test various features in parallel Compare different versions of the project Manage workflow files Category: UiPath General 21. Which of the following implementation stages involves an Automation Developer? (select all that apply) Kick Off Business Case and Technical Validation Development and Testing Project Closure Process Analysis Category: Studio 22. When using the "Read Range Workbook" activity in UiPath Studio, where does the read data get saved? Array variable Data Table variable Text file Excel workbook Category: Studio 23. Which of the following option in UiPath Studio allows you to create a local repository and copy the project to it? Connect to Git Copy to Git Git Init Clone Repository Category: Studio 24. You've been assigned to work on a new automation project. You need to get the project template which is already stored in a remote Git repository. Which option do you need to use in the Studio Team tab? Git Init Copy to Git Connect to Git Clone Repository Category: Studio 25. You are building a Process type project using a UI Library. You've just added the Library as a dependency.Where can you find the imported elements? In the Object Repository panel in the Descriptors tab In the Project panel under Dependencies In the Object Repository panel in the UI Activities tab In the Resources panel Category: Studio 26. What keyboard shortcut creates an IN argument? Ctrl + shift + A Ctrl + K Ctrl + shift + M Ctrl + M Category: Studio 27. Which of the following properties cannot be modified once global constants and variables are created? (select all that apply) Value Name Data Type Scope Category: Orchestrator 28. Which of the following entities need to be mapped to the folder in order to run an unattended job? (select all that apply) User or Robot Process Package Queues Machine template Category: Studio 29. How can the Visual Tree be used to fine-tune selectors and locate specific UI elements within an application? By using CSS selectors to target elements within the Visual Tree. By performing automated tests on the UI elements within the Visual Tree. By analyzing the hierarchical structure and relationships between elements in the Visual Tree. By inspecting the properties and attributes of UI elements in the Visual Tree. Category: Orchestrator 30. Which of the following sets of jobs can be run simultaneously using a pool of 3 machines connected using the same machine template having 3 runtimes? (select all that apply) 5 jobs created using a foreground process and 3 jobs created using a background process. 3 jobs created using a foreground process and 5 jobs created using a background process. 5 jobs created using a background process. 5 jobs created using a foreground process. Category: Studio 31. What needs to happen in order for a user to publish to his personal workspace feed? He must select Assistant (Robot Defaults) when publishing Make sure the user has a Named User license Enable the ability in Orchestrator, and he must select Orchestrator Personal Workspace Feed when publishing Category: Studio 32. Which of the following criteria can be considered as the breakdown criteria for splitting large workflows? (select all that apply) The purpose of the operation The nature of the timeout properties The application that is being automated The length of each workflow The data types used Category: Studio 33. From the following options, identify the key targeting methods used in UI automation to identify UI elements. (select all that apply) Anchor Fuzzy Selectors Strict Selectors Image Category: Studio 34. Look at the following variables:User = "Mary"Age = 39Address="310 Sycamore"How would you code the following string?Mary, 39, lives at 310 Sycamore. User + ", " + Age.ToString + ", lives at " + Address + "." "[User], [age], lives at [Address]." User + Age.ToString + "lives at " + Address User + ", " + Age + ", lives at " + Address + "." Category: Orchestrator 35. Which of the following entities need to be mapped to the folder in order to run an unattended job? (select all that apply) Package Process User or Robot Queues Category: Orchestrator 36. Which of the following folder entities can be configured to be accessed/executed only by a certain unattended robot? (select all that apply) Storage Buckets Triggers Jobs Assets Queues Category: Studio 37. Which activity among the following has a MaxIterations property? (select all that apply) For Each Assign Switch Else If While Category: Studio 38. In the Unified target method, what is the order in which the robot uses targeting methods to identify the selected UI element? Fuzzy selector, Selectors , Image (The priority order is Low->High) Selector, FuzzSelector and Image (The priority order is High ->Low) Selector, Fuzzy selector, Image Selector and Native Text (The priority order is High ->Low) All targeting methods start Identifying the target element simultaneously, and whichever finds the target first, that targeting method will be considered. Category: Studio 39. Which of the following is an example of a tag used in a selector? class=‘btn-dwnl’ aaname=‘Details’ wnd parentid=‘slide-list-container’ Category: Studio 40. What is the purpose of the File Exists activity? Checks if the specified file path exists and returns True if the file exists, False if it doesn't. It allows the user to select a folder while the automation is running. Checks if the specified folder path exists and returns True if the folder exists, False if it doesn't. It allows the workflow developer to select a folder when building the automation. Category: Studio 41. Which output method is good enough in most cases? FullText OCR Native Category: Studio 42. How can you overwrite the last commit to a Git repository in UiPath Studio? By selecting a version you want to commit to in the Commit Changes window By selecting Amend Commit in the Commit Changes window By selecting Undo Commit in the Commit Changes window By selecting Undo in the Project context menu Category: Studio 43. What activity can we use to create a new DataTable based on filtered values from an existing one? Sort Data Table Generate Data Table From Text Merge Data Table Filter Data Table Output Data Table Category: Studio 44. What are the key benefits of using the Parallel Activity in UiPath? (select all that apply) Sequential execution of activities Improved performance of complex workflows Ability to handle activities with dependencies Synchronization mechanisms for coordinated execution Efficient parallel processing Category: Studio 45. Which of the following properties cannot be modified once global constants and variables are created? (select all that apply) Value Data Type Name Scope Category: Studio 46. What are 3 advanced features of the UI selectors? Responsive Websites Enable hoverable elements Enforce visibility Enable native text Anchor selection Category: Studio 47. What is the "Textattribute" scraping method used for in UiPath's Get Text activity? Extracting the full text of an element including its child elements. Extracting text from a specified attribute of an element. Trying all possible output methods to return a text. Extracting text using the element's native properties. Category: Studio 48. What is the most effective way to handle the click on a UI Element that is not always available? Set the ContinueOnError property of the Click activity to True. Place the Click activity inside a Try Catch. Use a Find Element activity. Use an Element Exists activity and then a Click activity. Category: Studio 49. Which of the following is recommended to have in a Catch block? (select all that apply) A Log Message activitiy There's no need to add an activity in a Catch block The activity performed which has a chance of throwing an error The activity or set of activities which is to be performed if an error occurs Category: Studio 50. 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) Modern Design Experience enabled in the project Data Service enabled UiPath.Uiautomation.Activities package versions 2020.10 and above Action Center enabled Your score isThe average score is 81% 0% Restart quiz