UiPath Automation Developer Associate Exam (2023.10)
Last Update Oct 2, 2025
Total Questions : 382
We are offering FREE UiPath-ADAv1 UiPath exam questions. All you do is to just go and sign up. Give your details, prepare UiPath-ADAv1 free exam questions and then go for complete pool of UiPath Automation Developer Associate Exam (2023.10) test questions that will help you more.
How many Global Exception Handlers can be established per automation project, according to best practices?
Which of the following options is correct regarding the below Object Repository tree structure?
Which option from the UiPath Studio backstage view prohibits debugging projects with Workflow Analyzer errors?
A developer wants to create a process which runs in the background and uses Excel activities Which property of the Excel Application Scope activity must be configured for the process to run in the background?
Which option from the UiPath Studio backstage view prohibits debugging projects with Workflow Analyzer errors?
Consider the following code involving a Try Catch:
What will be the output after running the code?
Which activity should be used inside a Use Excel File scope to be able to sort a table directly in an .xlsx file?
What happens when attempting to publish a process with a validation error from UiPath Studio to Orchestrator?
In a workflow, a developer has set up two Int32 variables: Var1 and Var2. During Debug mode execution, which panel enables the developer to keep track of the outcome of the expression Var1 > Var2?
Where can you find a list of all activities that support Windows compatibility?
Which variable field is optional when creating a variable, in UiPath Studio?
Consider the following Try Catch statement:
What will happen when the code is executed?
When a developer runs a process using the REFramework, with the process utilizing Orchestrator queues and a queue already created with the Name provided and the Auto Retry function disabled, which states will be executed without errors?
You are working on an existing project that is connected to a GIT version control system Which Context menu option should be used to provide local versions of files to the remote repository?
A developer is reviewing an existing workflow in UiPath Studio Based on best practices, what should be used to view the available versions for activities used in the workflow?
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.
Which expression correctly converts the string variable "DateString" with the value "03/03/2023 16:23:11" into a Date Time variable?
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?
Which method can be used to install an application on a ServiceNow instance? (Choose 3 answers)
Upon extracting data from a website, a developer saves it in three variables: "FirstName", "LastName", and "City". The developer intends to store these three String variables in a fixed-size data structure called
"UserData", to be utilized later within another workflow in the process.
Considering best practices, which data structure and assignment should be used?
Which of the following statements correctly describes the characteristics of Unattended Automation?
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 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?
Which is an example of when an application might use a Scheduled Script Execution (Scheduled Job)?
A developer needs to create a repetitive process in the REFramework. Following the best practices, which action(s) should be performed to defend against potential robot crashes such as "out of
memory"?
What component of the UiPath Ecosystem allows a user to post questions or answers on RPA topics?
Which of the following properties is optional when creating a new argument?
What is the purpose of Breakpoints when debugging a project in UiPath Studio?
What are the components that define a state within a State Machine in UiPath Studio?
Which of the following workflow names is correct, based on best practices?
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?
Which compatibility option should be selected when creating a new project to use .NET 6 with Windows support?
Given the following list of arguments:
And the following code:
What is the value that will be displayed in the Output Panel at the end of the sequence below:
In a project involving an Orchestrator queue, a developer needs to extract the two values from the ItemInformation fields of each QueueItem object. How can those fields be extracted from the variable?
When creating a new test case, which option restricts dynamic data update in UiPath Orchestrator once the test case is published?
What activity can be used to get all rows in a DataTable variable with a Quantity value greater than 500?
What are the three source control plug ins found in the backstage view of UiPath Studio in Home - Tools - Plugins?
You are invoking a workflow file called "SecondaryWorkflow.xaml" from "PrimaryWorkflow.xamr. The following shows the Import Arguments panel of the Invoke Workflow File activity:
In addition, the following reflects the Arguments panel in ''SecondaryWorkflow.xaml":
You use a Log Message activity in “SecondaryWorkflow.xamr to print the value of the argument “in_Message". What is the expected result of executing "PrimaryWorkflow.xaml"?
In a process, a variable called 'Timestamp' of type DateTime is used. The developer wants to print the variable in the format "yyyy-MM-dd hh:mm".
Which expression should be used?
A developer utilized the Add Data Row activity to insert a row into a DataTable called "dtReports". However, during runtime, UiPath Studio encounters an exception:
"Add Data Row: Object reference not set to an instance of an object."
The reason is that the DataTable has not been initialized.
To rectify this issue, what should the developer include in an Assign activity before the Add Data Row activity?
A developer wants to invoke a workflow in Main xaml called ProcessPurchaseOrders.xamI. Data needs to be passed to and from the invoked workflow What is the correct sequence of steps the developer needs to perform?
Instructions: Drag the Description found on the left and drop on the correct Step found on the right
What is a true statement regarding the characteristics of dictionaries in UiPath?
Which activity should be used to add data in a Microsoft Excel spreadsheet without overwriting any existing information?
While working in an RPA testing project, you encountered the following activity in one of the workflows included in the project.
What action can you perform in your mocked file to replace the functionality of the MessageBox with a LogMessage during mock testing?
What is the correct sequence of steps to perform when trying to pass and get data from an invoked workflow in Main.xaml?
Instructions: Drag the Description found on the left and drop on the correct Step Sequence found on the right.
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?
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"?
A developer has created a variable of type List of Strings named "UsersList", and initialized it with an empty list: "UsersList = new List(Of String)".
What is printed in the log message after the following Invoke Code is executed?
Consider the following automation steps:
1. Open the Web Browser.
2. Scrape the data.
3. Store the data in Microsoft Excel.
4. Close the Web Browser.
In accordance with UiPath best practices, which section of the Try Catch activity ensures that Step 4 (closing the web browser) is executed regardless of any exceptions
occurring in Step 2 (data scraping) or Step 3 (storing data in Microsoft Excel)?
Based on the image provided, which catch block will be executed if the Employees Excel file is open during runtime?
While creating a process automation pipeline, what process attribute should be avoided to ensure there are minimal or no automation maintenance requirements?
While working on a project that utilizes Object Repository, you have one linked Ul Element that is used across multiple activities. What needs to happen to edit a selector for
only one activity without modifying it in Object Repository?
What will be the outcome when executing a Try Catch activity with a sequence placed within the Try section and no Catches section present?
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?
In which situation will a Ul Automation activity generate a partial selector?
A developer has created an automation process that includes:
Based on the information shown in the exhibits, what is the output of the Write Line activity in the Main xaml file?
In which stage of the UiPath implementation model are the chosen processes analyzed in their AS-IS state?
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 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'?
A developer created three variables used in the workflow shown below:
Instructions: Based on best practices, select the correct Scope for each Variable type from the drop-down lists shown in the following exhibit.
What happens when the area selection feature in the UiPath Computer Vision wizard is used?
A process workflow contains a Try Catch activity that is designed to catch and stop when any unknown System Exceptions occur. What would be the recommended Log Level
for the Log Message contained in the System Exception block?
Which is the recommended variable type for storing password values that are composed solely of numbers?
What happens to the generated variable when you manually create an output variable in the output field in UiPath Studio?
Which argument name follows UiPath best practices for argument naming conventions?
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?
Which activity enables a developer to run three sequences asynchronously in the process they are developing?
A developer examines a workflow in which filenames are stored within a collection. The collection is initialized with a single filename. When adding a new filename to the collection, which collection variable type will cause an error?
What is the recommended approach for handling tabular data when building a REFramework transactional project in UiPath?
How can the value be configured for each of the three arguments (one "In", one "Out", and one "In/Out") in the Arguments window of the Invoked Workflow?
A developer is building a process that types data into input fields using the Hardware Events input method. Which property of the Type Into activity should be modified to reduce the pace at which the input string characters are typed into the fields?
A developer stores value "25.11" in a String variable called "InvoiceTotal". Which expression should be used to convert "InvoiceTotal" to a numeric format with the decimals
included?
After generating a strict selector using the Indicate target on screen option within a Click activity, what should the developer utilize to view the complete list of attributes for the targeted UI element?
Which server-side API debug log method is available for scoped applications?
A developer is working on an automation using the REFramework. Each transaction item represents a piece of client information. For each customer, the automated procedure must click the
"Generate Shipment Details" button. This generates a table of shipment records for each customer.
What type of exception occurs when the data is not accessible, the created table displays only the header row, and processing for that client must be halted?
When a developer is examining a suspended state upon reaching a breakpoint, which activity will the Executor be directed to if Step Out is selected from the Debug section in
UiPath Studio's ribbon interface?
Suppose a developer is working with a 2023 yearly calendar. To expand the calendar into a monthly view, the developer must always click on the 15th day of the current month and add an event.
The selector for the Event Date Element activity in March is presented as follows:
How should the selector be altered to guarantee that it clicks on the 15th of the ongoing month?
What are the steps to publish a project from UiPath Studio?
Instructions: Drag the Description found on the "Left" and drop on the correct Step Sequence found on the "Right".
Which set of properties, methods, or activities enables the developer to obtain a subset of data from a data table called "dt"?
What happens to the scope of a variable that is automatically generated from an activity output if you move the activity into a For Each loop?
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?
You want to automate document processing tasks such as extracting and validating data from multiple documents in an online service. How can you achieve this using UiPath Studio Web?
From a governance perspective, what is the most suitable way to share a library with your teammates within an organization using UiPath?
Which output method should be used to extract hidden text from a PDF file?
Which of the following credentials stores have built in support in Orchestrator?
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"?
Which activity can be used to transition a Background Process to Foreground?
In an RPA Testing project, you created the mock "MySequencemock" for the file "MySequence". You have to update "MySequence" and add a Log Message activity and a Verify Expression activity.
What will happen to "MySequencemock" file when you save the project, assuming that the file is closed?
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
A developer is using a Global Exception Handler as an error handling mechanism for a project. By default, how many times does a Global Exception Handler retry an activity that continually throws an error?
Where can you find a list of all the activities that support the Windows compatibility?
A project contains a Try Catch activity in the "Main.xaml" workflow. In the Catches block, there is a Rethrow activity. The process is started from Orchestrator and an exception is caught in the Try section. What is the expected result?
What is the default behavior when publishing files in UiPath Studio regarding the project folder?
When using the UiPath Strict selector as a targeting method, how does it interact with anchor usage?
A developer is using the REFramework template to automate a process. In "SetTransactionStatus" file, there is the following sequence of activities, where the last Log Message activity was added by
the developer:
The configuration for Add Log Fields and Remove Log Fields activities are shown below:
Add transaction log fields (Success)
The developer runs the process and notices the argument values for the first transaction are:
in_TransactionlD = "07/18/2023 10:27:29"
io_TransactionNumber = 1
in_TransactionField1 = "UI235-80"
in_TransactionField2 = "Update Request"
Which of the following Log Message Details will be displayed when executing the activity Log Message Completed for the first transaction, considering it is successful?
Which of the following properties can be modified once global constants and variables are created?
What is the expected behavior when execution is started from UiPath Studio in Debug mode with a breakpoint on a Type Into activity?
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?