Quality UiPath-ARDv1 PDF Dumps - UiPath-ARDv1 Exam Questions
Most UptoDate UiPath UiPath-ARDv1 Exam Dumps PDF 2023
How much UiPath-Ardv1 Exam Cost
The price of the UiPath-Ardv1 exam is 200 USD.
NEW QUESTION 147
A developer is working with a newer application using UiExplorer. Unfortunately, UiExplorer does not recognize the required selectors. What UI Framework is recommended for the developer to choose in such a situation?
- A. UI Automation
- B. Active Accessibility
- C. Visual UI
- D. Default
Answer: A
Explanation:
In UiExplorer, you can choose one of three UI Frameworks to change the technology used to determine UI elements and their selectors. The following options are available:
- Default - UiPath proprietary method. Usually works fine with all types of user interfaces.
- Active Accessibility - an earlier solution from Microsoft for making apps accessible. It is recommended that you use this option with legacy software when the Default one does not work.
- UI Automation - the improved accessibility model from Microsoft. It is recommended that you use this option with newer apps when the Default one does not work.
UiPath Documentation
NEW QUESTION 148
From the lowest priority to the highest priority, what is the correct priority sequence of the Log Levels for UiPath Robots?
NOTE: Drag and drop the lowest priority level to the top of the list and repeat until the highest priority level appears at the bottom of the list.
Answer:
Explanation:
NEW QUESTION 149
A developer is automating a production level process in the Robotic Enterprise (RE) Framework. Based on best practices, when should the developer log a meaningful message with the Logging Level as "Information"?
- A. Each time data is read from external sources
- B. Each time an exception is caught in a Catch block
- C. Every time a variable or argument value is used
- D. Every time the robot encounters an error on a Queue Item
Answer: D
NEW QUESTION 150
Scheduling a process is done from:
Options are :
- A. Not Possible
- B. UiPath Studio
- C. UiPath Robot
- D. Orchestrator Server
Answer: D
NEW QUESTION 151
What do the Items in the Orchestrator queues consist of? Select all the options that apply.
Options are :
- A. Input data for the processes executed by the robots
- B. Jobs to be executed by the robots
- C. Processes to be executed by the robots
Answer: A
NEW QUESTION 152
A developer uses a Lookup Data Table activity to return an email address of a person. What will be the result of the execution of the following seqeunce?
Please find the Build Data Table activity below
Please find the properties of Lookup Data Table activity below
- A. [email protected]
- B. An error will be thrown.
- C. [email protected]
- D. [email protected]
Answer: C
Explanation:
Data Table is zero-based, so ColumnIndex 1 is actually the second column of the data table, "Last Name" column.
Lookup Data Table activity returns the first result of the search, so as there are 2 rows with Last Name equl to "Joe", the value from the first found row will be returned - [email protected].
UiPath Documentation
Exam Topic: Describe how to work with complex data structures and data manipulation; for example, datatables and collections
NEW QUESTION 153
What happens when a new version of a package is published?
Options are :
- A. The processes have to be updated in order for the robots to run the latest version of the package
- B. The old version of the package is overwritten
- C. The processes using the package are automatically updated to the latest version
Answer: A
NEW QUESTION 154
A developer is working with a variable named sampleDataTable of type DataTable in the following sequence. In the Invoke Code activity, the developer wants to sum up all values from column "Price" in the sampleDataTable. What will be the result of the processing?



- A. "Message Box" activity will display the value "320".
- B. "Message Box" activity will display the value "120".
- C. An Error Message will be displayed.
- D. Message Box" activity will display the value "0".
Answer: C
Explanation:
NEW QUESTION 155
The following reflects a subset of process steps from the Process Definition Document (PDD):
1) Read the unread emails from the Robot mailbox and mark them as read.
2) If the email has an attachment of type PNG, download the attachment.
3) Else, send a reply to the sender with the message "Invalid Attachment, please attach a .PNG file to process".
If you are designing a process based on the PDD steps, what is the correct exception type for Step 3?
- A. UiPath.Core.InvalidImageException
- B. System.ArgumentException
- C. UiPath.Core.BusinessRuleException
- D. System.Exception
Answer: B
NEW QUESTION 156
Which of the following statements are true? Select all the options that apply.
Options are :
- A. The Desktop recorder generates partial selectors
- B. You cannot use a recorder in a Citrix environment
- C. The recorder is used to create a skeleton for the UI automation
Answer: A,C
NEW QUESTION 157
While automating an installation wizard, a pop-up window may or may not appear. What can you use to close the window without stopping the workflow?
Options are :
- A. Use a Click activity and set its TimeoutMS property to 30.
- B. Use a Click activity with the ContinueOnError property set to True.
- C. Use a Click activity inside a Try Catch activity.
Answer: B,C
NEW QUESTION 158
A process is created using UiPath REFramework. By default, if the maximum number of retries is reached, what steps are executed next?
- A. 1. io_TransactionNumber = io_TransactionNumber + 1
- B. 1. io_RetryNumber = 0
- C. 1. io_RetryNumber = 1
2. io_TransactionNumber = io_TransactionNumber + 1 - D. 1. io_RetryNumber = 0
2. io_TransactionNumber = io_TransactionNumber + 1
Answer: D
Explanation:
If the maximum number of retries is reached, the io_RetryNumber is reseted and the next transaction is executed.
UiPath Documentation
Exam Topic: Modify the REFramework to use any datatype for TransactionItem (for example, QueueItem, String, DataTable, etc.), how queues or tabular data are used within the REFramework, how to adapt the template to execute a linear process, and the difference between transactional, iterative, and linear processes
NEW QUESTION 159
A developer uses a For Each Row in Data Table activity to iterate through a sampleDataTable that stores current prices of the product and price at the discount. The developer wants to remove some rows (please see the condition in the If activity) and display, how many rows were left in the datatable. What will be the result of the processing?
Please find the BuildDataTable wizard below:
- A. Message Box activity will throw an error.
- B. Message Box activity will display the value: "3".
- C. For Each Row In Data Table activity will throw an error.
- D. Message Box activity will display the value: "1".
Answer: C
Explanation:
When you try to delete a row inside a For Each Row in Data Table activity, "Collection was modified; enumeration operation might not execute" error will be displayed, as it is not allowed to modify the structure of the datatable (e.g. change positions of datarows, remove them etc.) during iteration.
UiPath Forum
UiPath Documentation
Exam Topic: Describe how to work with complex data structures and data manipulation; for example, datatables and collections.
NEW QUESTION 160
In which workflow in the UiPath Robotic Enterprise Framework template is the retry mechanism implemented?
Options are :
- A. The SetTransactionStatus workflow
- B. The GetTransactionData workflow
- C. The Main workflow
Answer: A
NEW QUESTION 161
A developer defined two Int32 variables, FirstInt and SecondInt, in a workflow. Which panel can the developer use to monitor the result of the expression. FirstInt > SecondInt, throughout the execution of the workflow in Debug mode?
- A. Breakpoints Panel
- B. Watch Panel
- C. Locals Panel
- D. Immediate Panel
Answer: B
NEW QUESTION 162
A developer wants to execute a macro stored in the UiPath_Raport2021.xlsm file. What will be the value of the result variable once the following sequence is executed?
Please find the properties of Execute Macro activity below
Please fin the macro "Calculate" below
- A. 0
- B. null
- C. An error will be thrown
- D. 1
Answer: B
Explanation:
This macro will not return any value to UiPath, so result variable will be a null. To return a value to UiPath, the developer needs to add Calculate = Result at the end of the macro. In this way, result variable will be be returned the value of th calculation - 6.
Exam Topic: Identify and describe how activities are used to automate actions in Excel, e-mail, and .pdfs
NEW QUESTION 163
In this exercise, you will create a UiPath automation that performs the steps below.
To achieve this, you will use the REFrameWork as the starting template and follow the UiPath development best practices.
- A. The solution has to be scalable, so create two separate projects (sub-processes):
- One for the Dispatcher (add to queue);
- Another one for the Performer (consume queue).
Make sure you use a connection to an UiPath Orchestrator for testing. - B. Here are the steps performed by the Robot in the Performer:
1.Login to https:/Nvww.acme-test.com.
2. For each Queue Item:
- Click or hover over the Invoices menu item and then click on Search for Invoice;
- Type the Invoice Number retrieved from the queue item into the Invoice Number field field;
- Click on Search;
- Extract the values for the Vendor TaxID and Date and compare them with the values from the queue item (check for EXACT match for all fields!);
- If the values are not matching, this should be categorized as a Business Rule Exception, and the queue em should have the status set accordingly;
- If the values match, the transaction is successful.
Note: Navigation can be achieved in multiple ways by the robot - choose whichever you find best. - C. Here are the steps performed by the Robot in the Dispatcher:
1.Login to https:/Nvww.acme-test.com.
2. On the landing page, Dashboard, click or hover over the Invoices menu item and then click on Search for Invoice. Click on Display All Invoices.
3. Scrape the data from the whole table displayed.
4. For each row in the datatable, Add a queue item containing the Invoice Number, Vendor TaxID and Date.
5. Close ACME System 1. - D. Constraints to follow in the development, using the REFrameWork:
1. TransactionItem datatype should be a QueueItem. The process should recover and retry 2 times in case of errors in navigation between the Invoice Search and Invoices - Search Results pages. One transaction is the action of navigating to the Invoices Search page, searching for the Invoice Number and scraping the values from the resulting one row table.
2. Create a separate workflow file for the Login to ACME. File input arguments: URL; Username ; Password .
3. Create a separate workflow file for closing ACME.
4. Add the ACME_URL and ACME_Credential to the Excel Config file.
5. Populate lnitAllApplications.xaml from the Framework folder with Invoking the Login to ACt...1E and navigation to the Work Items.
6. Populate CloseAllApplications.xaml from the Framework folder with Invoking the Close ACtv1E.
7.Populate KillAllProcesses xaml from the Framework folder with killing the process used.
8. Populate the Process.xaml file with the following actions:Navigation, Searching for Invoice Number, Scraping, Checking if the values match, Handling the Business Rule Exception.
Important Note: Don't use external file references outside of the project folder (including Orchestrator Assets). Place all the used files within the project folder, zip that folder and upload it to the UiPath Certification Platform.
Answer: D
Explanation:
Zip Al the used workflow files AND the output Excel fife. Then upload the.zip file to the UiPath Certification Platform.
Good luck!
ALL THE BEST!
NEW QUESTION 164
You want to identify a selector for a button in an application. The selector will be used as the target in a Click activity.
In order to ensure the Click activity executes as intended, how many elements should the selector be valid for at runtime?
- A. 5 elements
- B. 1 element
- C. 3 elements
- D. 2 elements
Answer: B
NEW QUESTION 165
A developer is building a workflow that extracts the name of companies based on their IDs and then stores them in a datatable. The workflow contains a String variable that stores the company name, an output argument that stores the Company ID, and a datatable.
What represents an example of a naming convention best practice?
- A. String variable name: company_name
Argument name: out_companyId
Data Table name: DT_Companydata - B. String variable name: CompanyName
Argument name: out_CompanyId
Data Table name: dt_CompanyData - C. String variable name: CompanyName
Argument name: CompanyId
Data Table name: Dt_Companydata - D. String variable name: CompanyName
Argument name: out_companyId
Data Table name: companydata
Answer: B
NEW QUESTION 166
Which emails are deleted if you use Get IMAP Mail Messages with the DeleteMessages property set to true?
Options are :
- A. Only the emails that were marked as previously read.
- B. There is no DeleteMessages property for the Get IMAP Mail Message activity. This option is available only for Get Exchange Mail Message.
- C. The ones in the list that is retrieved by the Get IMAP Mail Messages activity.
Answer: C
NEW QUESTION 167
A developer executes the following Parallel activity. What is the result of the execution if the Udemy website is launched after 4 seconds, but the UiPath website is never launched?
Please find the Parallel activity below
Please find properties of On Element Appear 'Udemy Logo' below
Please find properties of On Element Appear 'UiPath Logo' below
- A. 1. Error is thrown by On Element Appear 'Udemy Logo'
- B. 1. Error is thrown by On Element Appear 'UiPath Logo'
- C. 1. Message Box "Udemy website got launched"
2. Error is thrown by On Element Appear 'UiPath Logo' - D. 1. Message Box "Udemy website got launched"
Answer: C
NEW QUESTION 168
What is the difference between a Click activity whose SimulateClick property is checked and another one with the same property unchecked?
Options are :
- A. There is no difference - both can be used in same scenarios.
- B. The activity with an enabled SimulateClick flag does not click the target element, it just simulates the action.
- C. The activity with the SimulateClick flag unchecked moves the mouse cursor over the target element, while the one with the flag set does not move the mouse cursor.
Answer: C
NEW QUESTION 169
A developer added six Queue Items to your queue on 15.04.2021. What is the correct sequence in which these Queue Items will be processed?
- A. A, C, F, B, E, D
- B. E, A, B, F, C, D
- C. A, E, B, D, C, F
- D. E, D, A, B, C, F
Answer: C
Explanation:
Within any given queue the transactions are processed in a hierarchical manner, according to this order:
Items that have a Deadline, as follows:
a. in order of Priority; and
b. according to the set Deadline for items with the same Priority.
Items with no Deadline, in order of Priority, and
a. according to the rule First In, First Out for items with the same Priority.
UiPath Documentation
Exam Topic: Describe how to work with Orchestrator queues and assets
NEW QUESTION 170
A developer executes the following Parallel activity. What is the result of the execution if the Udemy website is launched after 4 seconds, but the UiPath website is never launched?
Please find the Parallel activity below
Please find properties of On Element Appear 'Udemy Logo' below
Please find properties of On Element Appear 'UiPath Logo' below
- A. 1. Error is thrown by On Element Appear 'Udemy Logo'
- B. 1. Error is thrown by On Element Appear 'UiPath Logo'
- C. 1. Message Box "Udemy website got launched"
2. Error is thrown by On Element Appear 'UiPath Logo' - D. 1. Message Box "Udemy website got launched"
Answer: C
Explanation:
As both activities have the same Timeout, the outcome of both will be executed.
So first, Message Box "Udemy website got launched", as the website was launched in 4 seconds, and Timeout is 5 seconds.
Then an error is thrown by On Element Appear 'UiPath Logo', as the website was not launched in 5 seconds.
UiPath Forum
Exam Topic: Describe the use of various Classic UI synchronization activities; for example, ElementExists, FindElement, and FindText
NEW QUESTION 171
In this exercise, you will create a UiPath automation that performs the steps below.
To achieve this, you will use the REFrameWork as the starting template and follow the UiPath development best practices.
Here are the steps performed by the Robot:
1. Log in to https://www.acme-test.com.
2. On the landing page, Dashboard, click on the Work items menu item. Scrape the data in all the pages of the table, page by page, ensuring error handling and recovery.
3. For each page:
- Filter the records where Status is 'Open';
- Filter the records where Type is 'WI5';
- Filter the records where WIID is less than 500000;
- Append the resulting datatable into an Excel worksheet; you shouldn't worry about the headers and format of the output file.
Constraints to follow in the development, using the REFrameWork:
1. TransactionItem datatype should be a String. The process should recover and retry in case of errors in navigation between WorkItems page. One transaction is the action of scraping one web page.By navigating to the next page, the next transaction will execute. (Same as ACME Process 4 Dispatcher from the UiPath Academy).
2. Create a separate workflow file for the Login to ACME. File input arguments: URL ; Username ; Password .
3. Create a separate workflow file for closing ACME.
3. Add the ACME_URL and ACME_Credential to the Config file.
4. Populate InitAllApplications.xaml from the Framework folder with Invoking the Login to ACME and navigation to the Work Items.
5. Populate CloseAllApplications.xaml from the Framework folder with Invoking the Close ACME.
6. Populate KillAllProcesses.xaml from the Framework folder with killing the process used.
7. Populate the Process.xaml file with the following actions: Web scraping, Filtering and Appending to Excel.
Important Note: Don't use external file references outside of the project folder (including Orchestrator Assets). Place all the used files within the project folder, zip that folder and upload it to the UiPath Certification Platform.
Zip ALL the used workflow files AND the output Excel file. Then upload the .zip file to the UiPath Certification Platform.
Good luck!
Options are :
ALL THE BEST!
- A. Send us your feed back on this
Answer: A
NEW QUESTION 172
......
What is the duration, language, and format of UiPath-Ardv1 Exam
- Format: Multiple choices, multiple answers
- Number of Questions: 45-50
- Length of Examination: 120 minutes
- Passing Score 70%
100% Free UiPath Certified UiPath-ARDv1 Dumps PDF Demo Cert Guide Cover: https://braindumps.exam4docs.com/UiPath-ARDv1-study-questions.html

