10/257 questions · Unlock full access
Q1

A developer is building a process that interacts with a legacy desktop application. During testing, the 'Type Into' activity occasionally fails because the application's input fields are slow to become active after a window appears. The current implementation uses a fixed 'DelayAfter' property, which is proving unreliable. Which approach provides the most robust solution to ensure the input field is ready before typing?

Q2

A developer is tasked with creating a reusable library for their organization's finance department. The library needs to contain a workflow that formats currency values. This workflow requires a two-letter country code (e.g., 'US', 'DE') as input to apply the correct currency symbol and formatting. How should the developer ensure that any project using this library is forced to provide a valid, non-empty country code?

Q3

A junior developer created a process that reads data from an Excel file, processes it, and writes the results to a new sheet. During a peer review, a senior developer notices that the process fails if the Excel file is already open on the user's machine. The process uses 'Read Range Workbook' and 'Write Range Workbook' activities. What is the fundamental reason for this failure?

Q4

A developer needs to extract specific information from a block of text that follows a consistent but complex pattern. The text contains product codes that always start with two letters, followed by a hyphen, and then five digits (e.g., 'AB-12345'). Which activity or method is most efficient for extracting all occurrences of these product codes from a larger string variable?

Q5Multiple answers

A developer is configuring a process in Orchestrator that must run automatically every weekday at 9:00 AM. They have created a Trigger for the process. Which TWO of the following configurations are necessary to achieve this specific schedule? (Select TWO)

Q6

True or False: When using the 'Matches' activity in UiPath Studio, the 'Result' property outputs a Boolean value indicating whether a match was found.

Q7

A developer is creating a data-driven test case for a workflow that calculates loan eligibility. The test case uses an Excel file with columns for 'Income', 'CreditScore', and 'ExpectedResult'. The developer needs to validate that the workflow's output matches the 'ExpectedResult' for each row. Which activity should be used to perform this validation within the test case?

Q8

A developer needs to connect a UiPath automation to an external CRM system's API that is not available in the standard connector list. The goal is to trigger the automation whenever a new 'High Priority' lead is created in the CRM. The CRM can be configured to send a webhook with a JSON payload for this event. Which UiPath product should be used to receive this webhook and trigger the corresponding process?

Q9

A developer has a DataTable named `dt_Sales` with columns 'Region', 'Product', and 'Amount'. The developer needs to create a new DataTable that contains only the rows where the 'Region' is 'North' and the 'Amount' is greater than 1000. What is the most efficient way to achieve this using standard UiPath activities or methods?

Q10

During a code review, a senior developer points out that a project is not following best practices because sensitive credentials (a username and password) are stored in a local configuration file. The process is intended to run unattended from Orchestrator. What is the most secure and appropriate method for managing these credentials?