Latest [Oct 08, 2021] UiPath UiPath-ARDv1 Exam Practice Test To Gain Brilliante Result
Take a Leap Forward in Your Career by Earning UiPath UiPath-ARDv1
NEW QUESTION 81
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. Local version was not connected to any branch.
- B. Opened project was disconnected from the source control.
- C. Local repository is not synchronized with the remote one.
- D. Project was not properly checked out in Studio and merge failed into the master.
Answer: B
NEW QUESTION 82
What type of assets can be stored in Orchestrator?
Options are :
- A. Array, Datatable, Bool, String
- B. Integer, Passowrd, GenericValue, String
- C. Bool, String, Integer, Credential
Answer: C
NEW QUESTION 83
A developer configured the properties for a Click activity on an element inside a web page as shown in the exhibit. An animation on the web page never completely loads but the element specified in the Click activity does.
What occurs when this Click activity executes?
- A. Timeout error occurs without clicking on the element.
- B. Element is clicked once it is fully loaded.
- C. Waits 10 seconds before clicking on the element.
- D. Continues to the next activity after 30 seconds without clicking on the element.
Answer: D
NEW QUESTION 84
Which is the best way to navigate to a specific page in a web browser?
Options are :
- A. Use the Type Into activity inside an Attach Browser container
- B. Use a Type Into activity with a full selector
- C. Use the Navigate To activity inside an Attach Browser container
Answer: C
NEW QUESTION 85
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 warning will be shown in the Analyzer output for this activity?
- A. Activity Click Calculator button has a default name
- B. SendWindowMessages not checked in activity Click Calculator button
- C. Timeout values is not defined in activity Click Calculator button
- D. Hardcoded delays used in activity Click Calculator button
Answer: A
NEW QUESTION 86
What is the safest way to close an application?
Options are :
- A. By using the Process Name property of the Kill Process Activity
- B. By using the Close Application activity
- C. By sending the Alt + F4 hotkeys
Answer: B
NEW QUESTION 87
This is a reliable selector for a dynamic web page: webctrl idx='144' tag='IMG'/ Options are :
- A. False
- B. True
Answer: A
Explanation:
Topic 5, 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 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 Description is 'Calculate Client Security Hash';
- Filter the records where WIID is less than 600000;
- 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.
ALL THE BEST!
Send us your feedback on this.
NEW QUESTION 88
A developer is creating an automation project which processes personal information of employees.
To protect sensitive information that is logged during the execution of the automation at the Verbose level, how can the developer avoid logging variable and argument values in both Orchestrator and Studio?
- A. Check the Isolated property when invoking a workflow with sensitive information.
- B. Check the Private property on the activities that contain sensitive information.
- C. Store all sensitive information in an Excel file that the process can access.
- D. Ensure all personal information variables are of the SecureString variable type.
Answer: B
NEW QUESTION 89
A developer configured the Activity Project Settings for a UI automation and a Click activity in the project shown in the following exhibits:

If the target element is not found during execution in Debug mode, how long will it take until an error is thrown?
- A. 30 seconds
- B. 10 seconds
- C. 20 seconds
- D. 15 seconds
Answer: D
NEW QUESTION 90
Which of the following are considered best practices?
Options are :
- A. Removing unreferenced variables.
- B. Deleting disabled code.
- C. Leaving target applications opened.
Answer: B,C
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 91
What direction can the arguments of a workflow have?
Options are :
- A. In/Out arguments
- B. In arguments
- C. Out arguments
Answer: A,B,C
NEW QUESTION 92
Which of the scraping methods can get you the hidden text in the element?
Options are :
- A. OCR
- B. Native
- C. All of the above
- D. FullText
Answer: D
NEW QUESTION 93
Which of the following technologies can be used for background automation?
Options are :
- A. The Full Text method of Screen Scraping.
- B. The Click activity with the Simulate Click flag checked.
- C. Data Scraping.
- D. Type into activity with SendWindowMessages flag checked.
Answer: A,B,C,D
NEW QUESTION 94
Review the following exhibit:
Based on the exhibit, what is the result of the Write Line in the sequence?
- A. 0
- B. Hello
- C. 123True
- D. True
Answer: C
NEW QUESTION 95
Where can you trigger an unattended robot from? Select all the options that apply.
Options are :
- A. The UiPath Robot icon in the system tray
- B. UiPath Studio
- C. Remotely, from Orchestrator
Answer: A,C
NEW QUESTION 96
A developer needs to create an automation process that identifies a file with format "Monthly_Report_MMddyyyy.xlsx". The file name is saved to a variable called strinput.
To extract the date from strinput, which string manipulation method should be used?
- A. strinput.Substring(strInput.IndexOf("_")+1,strInput.IndexOf("."))
- B. strinput.Substring(strInput.IndexOf("_")+1.8)
- C. strinput.Substring(strInput.IndexOf("_")+1,strInput.IndexOf(".")-1)
- D. strinput.Substring(strInput.LastIndexOf("_")+1,8)
Answer: B
NEW QUESTION 97
What is the best practice to stop an ongoing job in Orchestrator?
Options are :
- A. By cancelling it and using a Should Stop activity inside the workflow.
- B. The process can only stop on its own.
- C. By terminating it.
Answer: C
NEW QUESTION 98
What type of argument can you define to pass data and retrieve the modified value from an invoked workflow?
Options are :
- A. In/Out
- B. Out
- C. In
Answer: A
NEW QUESTION 99
Is it possible to reprocess a transaction in a Queue after its failure due to an application exception?
Options are :
- A. No, transactions cannot be processed again if they fail.
- B. Yes, it can be retried manually on the Transactions page.
- C. Only transactions that failed due to a business exception can be reprocessed.
- D. Yes, if the Auto-Retry property of the Queue is enabled.
Answer: B,D
NEW QUESTION 100
Which file in the Robotic Enterprise (RE) Framework reads the Data/Config.xlsx file and retrieves assets from Orchestrator into the process?
- A. Process.xaml
- B. KillAllProcesses.xaml
- C. InitAllApplications.xaml
- D. InitAllSettings.xaml
Answer: C
NEW QUESTION 101
In which workflow in the UiPath Robotic Enterprise Framework template is the TransactionNumber global variable incremented by default?
Options are :
- A. SetTransactionStatus workflow
- B. GetTransactionData workflow
- C. Process workflow
Answer: A
NEW QUESTION 102
......
Authentic Best resources for UiPath-ARDv1 Online Practice Exam: https://www.prep4sures.top/UiPath-ARDv1-exam-dumps-torrent.html
Updates Up to 365 days On Developing UiPath-ARDv1 Braindumps: https://drive.google.com/open?id=1a49Wdu90JuKBC9ufyNSOxibt5Pn4sZr0