What are the steps to start building a custom connector using the Connector Builder for Integration Service?
A developer has stored a birth date in a String variable and must input this value into a custom form. The developer must ensure the date format corresponds to the accepted
input format.
Which method or activity is best suited to validate the format?
A developer published a process to UiPath Orchestrator with only the Mam.xaml workflow file. There is one "In" argument of type String in the Main.xaml file with a default value of String.Empty
When running the process from the Start Job window in Orchestrator what is the value of the argument at runtime?
Which logging level includes the following information by default?
1. Execution Started log entry - generated every time a process is started.
2. Execution Ended log entry - generated every time a process is finalized.
3. Transaction Started log entry - generated every time a transaction item is obtained by the robot from Orchestrator.
4. Transaction Ended log entry - generated every time the robot sets the transaction status to either Success or Failed.
5. Activity Information log entry - generated every time an activity is started, faulted or finished inside a workflow.
6. Arguments and Variables Information log entry - show values of the variables and arguments that are used.
What is the correct sequence of steps to install a new Activities package in UiPath Studio 2021 10? Instructions:
Drag the Description found on the left and drop on the correct Step found on the right.
Which LINQ method is used to filter data in a List or Data Table based on a condition?
What tool or method should be utilized inside UiPath Studio to assess the similarities between two files within the same automation project?
How many elements does an array contain if it is declared as Dim arr(0 To 0) As String in UiPath?
What is the default URL of the OCR server that runs the Computer Vision service?
A developer needs to create an array of folder names from the String variable. FilePath = "C:\\Users\\UiPathRobot\\Documents\\Technologies". Based on best practice, which method will return an array of only the folder names?
A developer is working with a Purchase Order automation process. The number of shipped containers and the number of items per container are extracted in two strings:
"ShippedContainers"
"ItemsPerContainer"
The robot must calculate the total number of items in all shipped containers as an Integer.
Which expression is suitable for calculating the total number of boxes?
During a code review, a developer discovered that the variable names did not follow best practices in an automation project. What happens when the developer updates the names of the variables in the Variables panel?
What happens to existing project dependencies in UiPath Studio when converting a Windows-Legacy project to Windows?
A developer uses a Type Into activity to interact with a UI element. If the Timeout property is not changed in activity properties or Activity Project Settings, how long will a robot attempt to find a UI element?
How many Global Exception Handlers can be established per automation project, according to best practices?
In a UiPath REFramework project, what is the primary purpose of using Custom Log Fields?
A developer wants to assign the first row of the "ID" column in the "DT" datatable to a String variable. Which expression should be added to the Value field of the Assign activity?
A developer has defined a variable named "CurrentDate" of type Date Time. Which of the following expressions can be used to show what hour was 12 hours prior to the date from the variable?
A developer wants to run two processes on the same machine, the first process contains only HTTP Request activities and the second one performs UI Automation. What option needs to be enabled on the first process in order to ensure that the processes can run concurrently on the same machine?
A developer created an automation which scrapes data from PDF reports. The reports have the same structure and the title format is always "Report X - PDF"T where X is a number from 1 to 100. Only one report will be open at a time but other PDF files may be open on the desktop.
What is the recommended method to ensure the selector identifies the correct PDF to use?
A developer needs to create a workflow that manipulates items related to invoices inside a web application. The following selector represents a UI element inside an invoice
represented by an 8-alphanumeric system-generated vendor tax ID.
<html app='chrome.exe' title='ACME System - Invoice - RO123456' />
Assuming only the Vendor Tax ID value changes in the selector, what represents an example of a good selector that matches only specific invoices with the vendor tax ID
defined in a pre-selected existing list?
What is the correct method to check how many resources are utilized in a personal workspace in UiPath Orchestrator?
A developer is troubleshooting a workflow that enters a Suspended mode when encountering a breakpoint. To inspect the subsequent activities individually by pausing after each one, which operation must be employed from the Debug section of the UiPath Studio's toolbar?
A developer wants to create a process that searches for images on a website and then saves the images in a local folder However, the website contains an error. As a result, the process may need to search for an image multiple times in order for it to display.
Which container activity should the developer use to search for an image multiple times'?
What is the expected behavior when execution is started from UiPath Studio in Debug mode with a breakpoint on a Type Into activity?
Consider testing a workflow that computes the sum of two numbers having the data driven test data from the Excel file below:
Expanding the functionality of the workflow to compute the sum of three numbers, the data needs to be updated as well to accommodate the new scenario:
What are steps to do that?
Which of the following statements must evaluate to true for a user to pass an Access Control? (Choose 3 answers)
A developer needs to create a process for the Human Resources team. During the development, they try to run the workflow containing the following dictionary variable:
But this error is shown:
What is the possible cause of the error?
What method can be used to change the index of an existing column in a datatable?
In the case of accidentally starting a process from UiPath Assistant, where should the user manually terminate the execution?
A developer created a data table called "DT" using the Build Data Table activity as shown in the exhibit.
What is the result of the expression, "DT.Rows(0)(1).ToString + DT.Rows(1)(0).ToString"?
A developer needs to take a screenshot of the state of the machine while the robot is running and then send the screenshot as an email. What is the correct sequence of steps that should be performed?
Instructions: Drag the Description found on the left and drop on the correct Step found on the right.
What is the output type returned when using a Get Test Data Queue Item activity?
How do you correctly create an array of strings containing the folder names from the variable FullFilePath = "C:\Users\UiPathRobot\Documents\Technologies"?
What is a true statement regarding the characteristics of dictionaries in UiPath?
Which of the following actions can be performed from the Tenant context in UiPath Orchestrator?
A developer is working with a Purchase Order automation process. The number of shipped containers and the number of items in each container are extracted in two strings,
"ShippedContainers" and "ItemsPerContainer". The robot must calculate the total number of items in all shipped containers, as an Integer.
Which expression is suitable for calculating the total number of boxes?
A developer needs to create a process for the Human Resources team. During the development, they try to run the workflow containing the following dictionary variable: What is the possible cause of the error?
A developer configured the properties for a Click activity as shown below:
What happens if the activity cannot find its target at runtime?
What should be done if an anchor is not automatically added when indicating an element and duplicates are found?
What role does the automation developer play in understanding business processes?
A developer created a DataTable called "DT" using the Build Data Table activity as shown in the exhibit:
What is the result of the expression:
The expression:
DT.Rows(0)(1).ToString + DT.Rows(1)(0).ToString
Which is the recommended variable type for storing password values that are composed solely of numbers?
Consider the following Try Catch statement:
What will happen when the code is executed?
A developer is building a process which reads invoice data from the "mvoices.csv " file that includes a Total column of type Double.
Instructions: Using the drop-down lists shown in the following exhibit, configure the Filter Data Table Wizard to keep all invoices with a Total value that is over 10 000 USD.
In what situations is it appropriate to use a static selector instead of a dynamic selector?
A developer invoked a workflow file with three arguments, one "ln": one "Out", and one "In/Out". In the Invoked Workflow's Arguments window, how can the Value be configured for each argument?
A developer is building an automation which types text into a text file. The Activity Project Settings for UI Automation Modern activities are set as follows:
What is the behavior of the Type Into activity when executing the workflow?
When choosing a process for automation, what factor contributes to its increased complexity?
What is the function of the Immediate Panel in UiPath Studio during the debugging process?
Which one of the following is a benefit of creating an Application Properties page for each application you develop?
Which of the following demonstrates the correct syntax for using the Vb.Net "If" Operator?
What component of the UiPath Ecosystem allows a user to post questions or answers on RPA topics?
Which option from the UiPath Studio backstage view prohibits debugging projects with Workflow Analyzer errors?
When automating the process of entering values into a web form, requiring each field to be brought to the foreground, which property of the Type Into activity should be adjusted to achieve this?
Based on best practices, how can the integer value, Mylnteger be displayed inside a Log Message activity?
A developer downloads a published package from UiPath Orchestrator 2021.10 to use locally. What is the extension of the downloaded package?
A developer implemented a process using the Robotic Enterprise Framework and an Orchestrator queue. The MaxRetryNumber from the "Config.xlsx" file is set to "1" and the Max # of retries from the Queue settings from Orchestrator is set to
"2". At runtime, the first transaction item throws a Business Exception.
How many times will the transaction be retried?
A developer has extracted the date "08-22-2022" from an invoice and stored it in a variable of type String called ExtractedDate. As part of the process, the developer needs to perform a comparison with a different date.
Which expression should be used to convert ExtractedDate to a DateTime type?
In a UiPath project that uses State Machines, under what circumstances should the Final State activity be used in the project?
Which of the following is an outcome of converting a personal workspace into a folder in UiPath Orchestrator?
Which property of the Check App State activity in UiPath is used to define the maximum wait time for the application state to change?
A developer has designed an automation workflow which comprises:
Based on the information shown in the exhibits, what is the output of the Write Line activity in the "Main.xaml" file?
How can unattended robots be connected to Orchestrator using client credentials in the Assistant?
Instructions: Drag the Description found on the left and drop it on the correct Step found on the right.
In order to make the selector specifically target the "First Name" text field during runtime, the developer needs to select one additional Property checkbox from the
Unselected Items column in the UI Explorer.
Which is the additional Property checkbox in the following UI Explorer "Unselected Items" column that should be used for the First Name text field.
A developer wants to add items to a list of strings using the Invoke Method activity. The list is declared as follows:
Based on the information shown in the exhibits, what is the outcome of the Invoke Method activity?
The "DataTable_Users" variable of the data table type contains the following columns: "First Name". "Last Name", "Date of Birth", and "Username".
How can the argument "in_UserName" from "BuildUserID.xaml" be mapped to the appropriate values in "Main.xaml"?
Which of the following credentials stores have built in support in Orchestrator?
When encountering an ApplicationException, what occurs if the developer chooses InvalidOperationException as the exception handler within the Catches section of the Try Catch activity?
A Credential asset is created by a developer in Orchestrator as seen in the below image:
After the asset is created, if you change the Username value, what field must also be changed?
Which of the following options is correct regarding the below Object Repository tree structure?
Once "Library A" has been imported as a dependency in the current project, how can the UI Object Repository defined in "Library A" be accessed?
A developer has published a new library from UiPath Studio to the Orchestrator feed. Another developer on the team is connected to the same Orchestrator where the library has been published.
What steps are necessary for adding this library as a dependency in a project?
Data from an Excel file is read into a data table named "dtEmployee", as displayed in the following graphic:
A developer needs to filter the data table to obtain all rows representing employees from the Finance and IT departments with a Salary under 30,000. Which expression yields the desired outcomes?
What functionality can the developer use to improve the reliability of the Type Into activity for text input fields that are impacted by changing orientations?
Which activity should be used to iterate through all the files in a local folder?
A developer is working on a project that uses Git for source control. A fellow team member seeks to compare two versions of a specific workflow within the project. Which option in UiPath Studio offers this functionality?
A developer is automating an invoice process for the finance department using a Dispatcher and Performer model with access to Orchestrator. New invoices are added to a shared folder each morning. Each invoice
needs to be processed separately in the system, as a single unit of work. After each invoice is processed in the system, the system output ID must be emailed to the finance team email address.
How should the developer store the invoice data in Orchestrator?
A developer is working with an application that allows all types of input methods for the Type Into activity. Which property should be enabled for the fastest execution?
What happens when closing a Remote Debugging Connection while a debugging execution is in progress?
A developer created a data table called "DT" using the Build Data Table activity as shown in the exhibit.
What is the result of the expression, "DT.Rows(0)(1).ToString + DT.Rows(1)(0).ToString"?