Try Before You Buy

Download a free sample of any of our exam questions and answers

  • 24/7 customer support, Secure shopping site
  • Free One year updates to match real exam scenarios
  • If you failed your exam after buying our products we will refund the full amount back to you.

Get 2023 Most Reliable UiPath UiPath-ARDv1 Training Materials [Q164-Q184]

Share

Get 2023 Most Reliable UiPath UiPath-ARDv1 Training Materials

The Realest Study Materials UiPath-ARDv1 Dumps

NEW QUESTION # 164
You are working on a project with three other developers and are using Team Foundation Server (TFS) source control in UiPath Studio. If you want to ensure you have the newest version from the server on your local machine, which TFS command should be used?

  • A. Get Latest Version
  • B. Show Changes
  • C. Commit
  • D. Check In

Answer: D


NEW QUESTION # 165
Which of the following are considered best practices?
Options are :

  • A. Deleting disabled code.
  • B. Leaving target applications opened.
  • C. Removing unreferenced variables.

Answer: A,B

Explanation:
Topic 4, Case Study
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 or hover over the Vendors menu item and then click on Search for Vendor. Click on Display All Vendors. Scrape the data from the whole table isplayed. The resulting datatable will be used as the input data for the process. Navigate back to the dashboard.
Note: Navigation can be achieved in multiple ways by the robot - choose whichever you find best.
3. For each Tax ID:
- Navigate to Vendors - Search page (click or hover over the Vendors menu item and then click on Search for Vendor);
- Type the Tax ID into the Vendor Tax ID field;
- Click on Search;
- Extract the values for the Vendor, City and Country and compare them with the values from the previously extracted table from the Display All Vendors page (check for EXACT match for all fields!);
- If the values are not matching, this should be categorized as a Business Rule Exception;
- If the City does NOT belong to the group {""Paris"", ""Bucuresti"", ""Moscow"", ""Stuttgart"", ""Koln""}, this should be categorized as the second Business Rule Exception. We can only process requests from these cities. Check the City value extracted after the individual Tax ID search;
- If no Business Rule Exception, Append the resulting datatable from each page 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 DataRow. The process should recover and retry 2 times in case of errors in navigation between the Vendor Search and Vendor Search Results pages. One transaction is the action of navigating to the Vendor Search page, searching for the TaxID and scraping the values from the resulting one row table. (Similar to ACME Process 5 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.
4. Add the ACME_URL and ACME_Credential to the Excel Config file.
5. Populate InitAllApplications.xaml from the Framework folder with Invoking the Login to ACME and navigation to the Work Items.
6. Populate CloseAllApplications.xaml from the Framework folder with Invoking the Close ACME.
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 TaxID, Scraping, Checking if the values match, Checking for the correct City, 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.
Send us your feedback on this.


NEW QUESTION # 166
When requesting a work item from Orchestrator Queues using the Get Transaction Item activity, you need to specify the following:
Options are :

  • A. The name of the Queue, the number of items, and a filtering expression
  • B. The name of the Queue and the number of items to be retrieved
  • C. The name of the Queue which contains that specific work item

Answer: C


NEW QUESTION # 167
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 or hover over the Vendors menu item and then click on Search for Vendor. Click on Display All Vendors. Scrape the data from the whole table isplayed. The resulting datatable will be used as the input data for the process. Navigate back to the dashboard.
Note: Navigation can be achieved in multiple ways by the robot - choose whichever you find best.
3. For each Tax ID:
- Navigate to Vendors - Search page (click or hover over the Vendors menu item and then click on Search for Vendor);
- Type the Tax ID into the Vendor Tax ID field;
- Click on Search;
- Extract the values for the Vendor, City and Country and compare them with the values from the previously extracted table from the Display All Vendors page (check for EXACT match for all fields!);
- If the values are not matching, this should be categorized as a Business Rule Exception;
- If the City does NOT belong to the group {""Paris"", ""Bucuresti"", ""Moscow"", ""Stuttgart"", ""Koln""}, this should be categorized as the second Business Rule Exception. We can only process requests from these cities. Check the City value extracted after the individual Tax ID search;
- If no Business Rule Exception, Append the resulting datatable from each page 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 DataRow. The process should recover and retry 2 times in case of errors in navigation between the Vendor Search and Vendor Search Results pages. One transaction is the action of navigating to the Vendor Search page, searching for the TaxID and scraping the values from the resulting one row table. (Similar to ACME Process 5 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.
4. Add the ACME_URL and ACME_Credential to the Excel Config file.
5. Populate InitAllApplications.xaml from the Framework folder with Invoking the Login to ACME and navigation to the Work Items.
6. Populate CloseAllApplications.xaml from the Framework folder with Invoking the Close ACME.
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 TaxID, Scraping, Checking if the values match, Checking for the correct City, 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.

  • A. Send us your feed back on this

Answer: A


NEW QUESTION # 168
A developer needs to create a process that performs the following:
1. Scrapes a table of common English-Spanish translations
2. Writes the table to an Excel file
3. Emails that Excel file as an attachment
While creating this process, the developer notices that two activities with the same name can write the scraped DataTable to Excel.
What are the differences between the Workbook and Excel Write Range activities?

  • A. Excel Write Range activity can only be used when Excel is installed.
    Workbook Write Range activity can be faster by writing the data directly to the file.
  • B. Excel Write Range activity only works in the foreground, visible to the user. Workbook Write Range activity only works in the background.
  • C. Excel Write Range activity will create the file in the WorkbookPath property if it does not exist. Workbook Write Range activity can only be used when Excel is installed.
  • D. Excel Write Range activity only works in the background.Workbook Write Range activity will create the file in the WorkbookPath property if it does not exist.

Answer: A


NEW QUESTION # 169
A developer has built a process consisting of three invoked workflows in the Main.xaml file. The second workflow should be run in Picture-in-Picture (PiP). How should the Invoke Workflow File activity properties be configured?

  • A. Target Session = Current
    Isolated = Unchecked
  • B. Target Session = Picture in Picture
    Isolated = Checked
  • C. Target Session = Picture in Picture
    Isolated = Unchecked
  • D. Target Session = Current
    Isolated = Checked

Answer: B


NEW QUESTION # 170
A developer needs to reference the element in the first row of the "ID" column in the System.Data.DataTable, "DT".
Which expression is used to reference this element?

  • A. DT.Rows(1).Item("ID")
  • B. DT.Rows(0).ID
  • C. DT.Rows(0).Item("ID")
  • D. DT.Rows(1).ID

Answer: D


NEW QUESTION # 171
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. 3 elements
  • C. 2 elements
  • D. 1 element

Answer: D


NEW QUESTION # 172
A developer wants to create a process which uses UI automation activities on hidden or minimized windows for a user in a Call Center. While the process is running on the user's machine, the user also needs the ability to use the machine to look up items in a desktop application.
Which activity must be configured to be able to interact with hidden or minimized windows?

  • A. Get Full Text
  • B. Check
  • C. Click
  • D. Set Text

Answer: C


NEW QUESTION # 173
A developer is using GIT for version control. While the developer is attempting to Commit and Push a local file to the repository, the following pop-up message is displayed:

What is the reason for the pop-up message?

  • A. Opened project was disconnected from the source control.
  • B. Local repository is not synchronized with the remote one.
  • C. Project was not properly checked out in Studio and merge failed into the master.
  • D. Local version was not connected to any branch.

Answer: A


NEW QUESTION # 174
A developer is automating a process which uses data from invoice documents. The business requirement is that each transaction should be uniquely identified by the invoice number and is only uploaded to the Orchestrator queue once.
What is a recommended practice to meet this requirement?

  • A. Create a Queue with Unique Reference set to "Yes"
    In the process, set the Reference property of the Add Queue Item activity to the invoice number
  • B. Create a Queue with the Auto Retry property set to "No"
    In the process, set the QueueName property of the Add Queue Item activity to the invoice number
  • C. Create a Queue with the Auto Retry property set to "No"
    In the process, set an argument named TransactionId of the ItemInformation property of the Add Queue Item activity to the invoice number
  • D. Create a Queue with Unique Reference set to "Yes"
    In the process, set an argument named Reference of the ItemInformation property of the Add Queue Item activity to the invoice number

Answer: A


NEW QUESTION # 175
What are the uses of web scraping in UiPath?
Options are :

  • A. Extracting the images from a webpage
  • B. Extracting all the information from a web page
  • C. Extracting lists or other structured data from a web page
  • D. Extracting the content of a table from a web page

Answer: C


NEW QUESTION # 176
A developer plans to create a process to automate a web application. The web application requires HTML buttons and text boxes to be loaded. Although some assets may still be loading, the robot should perform the UI actions once the buttons and text boxes are loaded.
Which property should be configured?

  • A. WaitForReady = Complete
  • B. WaitForReady = Interactive
  • C. TimeoutMS = Int32.MaxValue
  • D. TimeoutMS = 10000

Answer: B


NEW QUESTION # 177
A developer uses REFramework to create complex process automation. In the InitAllSettings state, the robot retrieves all required assets from the Orchestrator. All values are stored in a Config dictionary which is passed between workflows. What happens if, during the processing of a queue item, the value of one of the assets was changed in Orchestrator?

  • A. Robot will throw an error when trying to use the value of that asset.
  • B. The value of the asset will be null.
  • C. Robot will use the old value of the asset.
  • D. Robot will use the new value of the asset.

Answer: C

Explanation:
If the Config file is used to store values from the Orchestrator at the beginning of the process, any changes in assets will not affect the robot, as all values were retrieved prior to the change. However, if robot uses the Get Asset activity each time before using the asset, then robot will use the latest value of the asset.
UiPath Documentation
Exam Topic: Describe how to work with Orchestrator queues and assets.


NEW QUESTION # 178
A developer wants to use an Anchor Base activity to search for a UI element by using another UI element as an anchor.
What activity can be used to provide an anchor?

  • A. Find Image
  • B. Find Children
  • C. Element Exists
  • D. Find Relative Element

Answer: A

Explanation:
Find Image would return a UI element that can be used as an anchor.
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 # 179
What types of assets can be stored in Orchestrator?
Options are :

  • A. Array, Datatable, Bool, String
  • B. Bool, String, Integer, Credential
  • C. Integer, Password, GenericValue, String

Answer: B


NEW QUESTION # 180
What is the relation between environments and provisioned robots?
Options are :

  • A. An environment can contain multiple robots.
  • B. One robot can be assigned to a single environment only.
  • C. An environment can contain a single robot only.
  • D. One robot can be assigned to multiple environments.

Answer: A,D


NEW QUESTION # 181
What is the best practice to stop an ongoing job in Orchestrator?
Options are :

  • A. By terminating it.
  • B. The process can only stop on its own.
  • C. By cancelling it and using a Should Stop activity inside the workflow.

Answer: A


NEW QUESTION # 182
How should a UiPath developer handle frequent changes in the project files?
Options are :

  • A. Old versions of the project files are not relevant
  • B. By using a source control solution, such as SVN, TFS, etc.
  • C. By creating daily backups of the files

Answer: C


NEW QUESTION # 183
What layout should be used for UI navigation and data processing?
Options are :

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

Answer: C


NEW QUESTION # 184
......

LATEST UiPath-ARDv1 Exam Practice Material: https://passguide.vce4dumps.com/UiPath-ARDv1-latest-dumps.html