UiPath-ARDv1 Free Exam Questions & Answers PDF Updated on Jul-2023 [Q147-Q164]

Share

UiPath-ARDv1 Free Exam Questions and Answers PDF Updated on Jul-2023

Latest UiPath-ARDv1 Exam Dumps Recently Updated 340 Questions

NEW QUESTION # 147
A developer created a custom rule for Workflow Analyzer and wants to make it available only at the project level.
Which action should the developer perform?

  • A. Create a Nuget package (.nupkg) of the rule and publish it to Orchestrator.
  • B. Create an external assembly (.dll) of the rule and copy it to the project location.
  • C. Create an external assembly (.dll) of the rule and copy it to the Studio install location.
  • D. Create a Nuget package (.nupkg) of the rule and install it in a Studio project as a dependency.

Answer: C


NEW QUESTION # 148
Downloading a report from a web application takes a variable amount of time, but a pop-up window is shown when the download is finished. What should you do to check whether the file has been fully downloaded before continuing the process?
Options are :

  • A. Use the On Element Appear activity and indicate the download pop-up window
  • B. Use the Element Exist activity and indicate the download pop-up window
  • C. Set the WaitForReady property to Complete

Answer: A


NEW QUESTION # 149
When debugging a process, you run in Debug mode and are paused at a breakpoint.
To quickly execute the activity with the breakpoint and proceed with the execution, which button should be clicked on the Execute tab of Studio?

  • A. Step Over
  • B. Break
  • C. Step Into
  • D. Continue

Answer: D


NEW QUESTION # 150
In a UiPath project, a developer uses a Click Button activity. A desktop application should be opened as a result of clicking the button. Based on best practice, what should the developer use to ensure: (1) the button element is clicked and (2) the application is opened correctly?

  • A. Use an Element Exists activity after the click to ensure that an element exists within the opened application
  • B. Use the Click activity in the Action section of a Retry Scope activity with a Condition that an element exists within the opened application
  • C. Modify the Click activity used to open the application by setting the ContinueOnError property to "True"
  • D. Use the Click activity within the Try Block and in the Catch Block to open the application

Answer: B


NEW QUESTION # 151
What kind of workflow should you create to define business rules?
Options are :

  • A. Sequence
  • B. State machine
  • C. Flowchart

Answer: A,C


NEW QUESTION # 152
Which of the following statements related to Orchestrator are true?
Options are :

  • A. A robot can execute many different jobs at the same time.
  • B. Robots can be assigned to multiple environments.
  • C. A robot can execute many different jobs one after the other.

Answer: B,C


NEW QUESTION # 153
In UiPath Robotic Enterprise Framework, the value of MaxRetryNumber in the Config.xlsx file should be set to a number greater than 0 to enable the retry mechanism in the following cases:
Options are :

  • A. Do not work with UiPath Orchestrator queues.
  • B. Get data from spreadsheets, databases, email, web API.
  • C. Get data from UiPath Orchestrator queues with Auto Retry disabled.

Answer: A,B


NEW QUESTION # 154
A developer met with a rental car company to review their business requirements which takes reservations from a Microsoft Outlook email box. The company has indicated the following occurs in their application:
1. Login to the rental car company's desktop application
2. Navigate to the Rental Requests section
3. Get emails from their Microsoft Outlook account
4. Extract data from the current email and add it to the queue
5. For each Queue Item:
- a) Navigate to the Reservations section
- b) Add the booking details into the Reservations section
- c) Close the current reservation and move to a new one
6. Log out and close the company's application
The developer needs to create a process using the Dispatcher/Performer architecture for the company. Which steps will be included in the Dispatcher process?

  • A. 3-6
  • B. 3-4
  • C. 1-3
  • D. 1-4

Answer: D


NEW QUESTION # 155
A developer wants to design a process in which multiple decision points will be used to accommodate complex scenarios.
In UiPath Studio, which recommended type of workflow meets this requirement?

  • A. Sequence
  • B. State Machine
  • C. Flowchart
  • D. Global Exception Handler

Answer: C


NEW QUESTION # 156
A developer uses Send Outlook Mail Message activity to send a notification mail to the Finance team. A developer wants to change the font color of the mail message to red. How can it be achieved?

  • A. Change the font color property in Send Outlook Mail Message activity.
  • B. Use HTML notation and set BodyIsHTML property to True.
  • C. Use HTML notation and set IsBodyHTML property to True.
  • D. Change the font color directly in Outlook.

Answer: C

Explanation:
IsBodyHtml property specifies whether the body of the message is written in HTML format. Using HTML notation, it is possible to edit font color, text alignment, font and many other visual properties of the mail text.
UiPath Documentation
Exam Topic: Identify and describe how activities are used to automate actions in Excel, e-mail, and .pdfs


NEW QUESTION # 157
A developer created an automation project in the Robotic Enterprise (RE) Framework which needs to log into a website using different credentials depending on the account and machine it runs on. If the value is not defined for the account and machine, the developer needs the process to throw an error. For security reasons, the credentials for the login are stored in Orchestrator as Credential Assets with the Value Per Account-Machine option.
Which steps should the developer perform to use the Orchestrator asset in the project?

  • A. Create a Credential asset with the Global Value disabled.
    Add a row in the Settings sheet in Config.xlsx with the name of the Orchestrator asset.
  • B. Create a Credential asset with the Global Value enabled.
    Add a row in the Assets sheet in Config.xlsx with the name of the Orchestrator asset.
  • C. Create a Credential asset with the Global Value enabled.
    Add a row in the Settings sheet in Config.xlsx with the name of the Orchestrator asset.
  • D. Create a Credential asset with the Global Value disabled.
    Add a row in the Assets sheet in Config.xlsx with the name of the Orchestrator asset.

Answer: A


NEW QUESTION # 158
A developer creates a workflow that extracts the date of birth for different account holders in a web application. The following selector represents the selector structure for a 6-digit account number 123456.
<html app='chrome.exe' title='ACME Accounts System - Employees - 123456' />
<webctrl tag='DIV' aaname='123456' class='DateOfBirth' />
Assume only the account number value changes in the selector and there is a defined list of 6-digit account numbers.
The developer needs to fine-tune the selector to work only for a pre-selected list of account numbers. What represents an example of a good selector?

  • A. <html app='chrome.exe' title='ACME Accounts System - Employees - ' />
    <webctrl tag='DIV' aaname='{{accountNumber}}' class='{{accountNumber}}' /> Where accountNumber is a 6-digit string variable containing an account number
  • B. <html app='chrome.exe' title='ACME Accounts System - Employees - {{accountNumber}}' />
    <webctrl tag='DIV' aaname='?' class='DateOfBirth' />
    Where accountNumber is a 6-digit string variable containing an account number
  • C. <html app='chrome.exe' title='ACME Accounts System - Employees - {{accountNumber}}' />
    <webctrl tag='DIV' aaname='{{accountNumber}}' class='DateOfBirth' />
    Where accountNumber is a 6-digit string variable containing an account number
  • D. <html app='chrome.exe' title='ACME Accounts System - Employees - {{accountNumber}}' />
    <webctrl tag='DIV' aaname='{{accountNumber}}' class='*' />
    Where accountNumber is a 6-digit string variable containing an account number

Answer: C


NEW QUESTION # 159
Is there any way to hide the execution of one activity in the logs?
Options are :

  • A. Yes, by checking the Private property of the activity that is to be hidden.
  • B. No, but the logs can be manually edited.
  • C. Yes, by changing the minLevel property of the "Execution" logger from NLog.config file.

Answer: A


NEW QUESTION # 160
A developer entered custom values in the Browser property in the UI Automation section of the Activity Project Settings menu.
Which set of activities can be affected by this change?

  • A. Navigate To and Attach Browser
  • B. Open Browser and Navigate To
  • C. Attach Browser and Open Browser
  • D. Open Browser and Close Tab

Answer: D


NEW QUESTION # 161
A developer uses Workflow Analyzer with the default rules to check if a project follows best practices. In one of the workflows, the Properties of a Click activity is shown in the following exhibit.

Which Workflow Analyzer rule will trigger a warning for this activity?

  • A. Hardcoded Timeout
  • B. Hardcoded Delays
  • C. Simulate Click
  • D. Activity Name Defaults

Answer: C


NEW QUESTION # 162
A developer creates a Dispatcher which extracts information from the top 30 mail messages in Microsoft Outlook and uploads that information into a queue.
What is the recommended way to avoid processing duplicates of the same Queue Items?

  • A. Set the "Unique Reference" of the queue to "Yes" and add a descriptive "Reference" in the "Add Queue Item" activity.
  • B. Add a descriptive "Reference" in the "Add Queue Item" activity and check that it does not equal the "Reference" of the Queue Item last processed.
  • C. Create an Excel file of processed Queue Items and loop through the list to check if the current Queue Item has been processed before.
  • D. Set the "Unique Reference" of the queue to "Yes" and "Auto Retry" of the queue to "No".

Answer: A


NEW QUESTION # 163
What is the use of <idx='*'> attribute when working with selectors?

  • A. <idx='*'> attribute should not be used according to best practices.
  • B. To work with selectors that dynamically change the <idx> attribute.
  • C. To indicate that <idx> attribute is optional in this selector.
  • D. To search through all active window instances for the element matching the top-level tag attributes.

Answer: D

Explanation:
Introducing Non-Greedy search in your selectors instructs it to search through all the active windows or browser instances that match the top-level tags of your selector, and not just the window instances in focus. Non-Greedy search makes use of the idx() attribute, which needs to be included in the top-level tag, as follows:
<idx='*'> searches through all active window instances for the element matching the top-level tag attributes.
Please note that the <idx='1'> option only searches through window instances in focus.
UiPath Documentation
Exam Topic: Describe how Tags and Attributes, Dynamic Selectors, Anchor Base, etc. are used in UI Explorer to create a robust selector in the Default, Active Accessibility, or UI Automation frameworks


NEW QUESTION # 164
......

UiPath UiPath-ARDv1 Real 2023 Braindumps Mock Exam Dumps: https://examcollection.prep4sureguide.com/UiPath-ARDv1-prep4sure-exam-guide.html