Sep 10, 2021 Step by Step Guide to Prepare for UiPath-ARDv1 Exam BrainDumps
UiPath Certified UiPath-ARDv1 Real Exam Questions and Answers FREE Updated on 2021
NEW QUESTION 103
What activity can you use to get a column value from a specific row of a DataTable?
Options are :
- A. Remove Data
- B. Row Read Cell
- C. Get Row Item
Answer: C
NEW QUESTION 104
Which of the following are considered best practices?
Options are :
- A. Start you new sequence with a short annotation meant to explain the purpose of the workflow
- B. Include a Should Stop activity at the end of the workflow
- C. Think about the exception that might occur during the execution of the process
Answer: A,C
NEW QUESTION 105
How can a string variable called myString be converted to an all-capitals representation for future use?
Options are :
- A. By using an Assign activity with myString on the left side and myString.ToUpper on the right side
- B. By using a Write Line with the Text property set to myString.ToUpper.
Answer: A
NEW QUESTION 106
Practical exam questions is different for different people, so solution cant be shared but as i have promised that i will help in practical exam, You can mail me at [email protected] and i will help you to clear practical exam also.
Options are :
- A. Understood
- B. Answer :Understood
Answer: A
NEW QUESTION 107
What kind of workflow should you create to define business rules?
Options are :
- A. Flowchart
- B. State machine
- C. Sequence
Answer: A,C
NEW QUESTION 108
Which of the following statements are true? Select all the options that apply.
Options are :
- A. The recorder is used to create a skeleton for the UI automation
- B. The Desktop recorder generates partial selectors
- C. You cannot use a recorder in a Citrix environment
Answer: A,B
NEW QUESTION 109
If a developer wants to use a variable of type UIElement to identify a button in a Click activity, which property must be manually configured during development?
- A. Selector
- B. Element
- C. ClippingRegion
- D. WaitForReady
Answer: C
NEW QUESTION 110
A developer wants to ensure that a process they are developing includes coherent logs with meaningful log messages. During the execution of the process, an application exception is caught and stored in a local variable called exception.
Based on UiPath best practices, how should the Log Message activity in the Catch section of this exception be configured?
- A. Level: Error
Message: "Exception occurred at" + exception.Source - B. Level: Warn
Message: exception.Message + "at" + exception.Source - C. Level: Info
Message: "Application Exception at" + exception.Source - D. Level: Fatal
Message: exception.Message
Answer: D
NEW QUESTION 111
When should the "Add Log Fields" activity be used?
Options are :
- A. When the standard log message has to be customized by adding new fields to it
- B. When logs need to be enabled
- C. When a log message with a maximum number of five visible fields needs to be generated
Answer: A
NEW QUESTION 112
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. A robot can execute many different jobs one after the other.
- C. Robots can be assigned to multiple environments.
Answer: B,C
NEW QUESTION 113
Which activities allow you to iterate through an array of strings?
Options are :
- A. For Each
- B. For Each Row
- C. While
- D. Do While
Answer: A,C,D
NEW QUESTION 114
Where can you find the value written by the Write Line activity?
Options are :
- A. In a variable
- B. In the Output pane
- C. At console
Answer: B
NEW QUESTION 115
A new blank project only has the Main.xaml file and consists of a single Throw activity. The activity is not enclosed in a Try Catch activity.
If this process is published and run from Orchestrator, what is the expected result?
- A. Exception Pop-up is displayed on the robot machine.
- B. Job is completed with a "Successful" state.
- C. Job is completed with a "Stopped" state.
- D. Job is completed with a 'Faulted" state.
Answer: A
NEW QUESTION 116
The String.Format("Input ={0} and Output = {0}", "1","2") expression returns the following:
Options are :
- A. Input ={0} and Output = {0}
- B. Input ={1} and Output = {2}
- C. Input = 1 and Output = 1
- D. Input = 1 and Output = 2
Answer: C
NEW QUESTION 117
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 118
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).ID
- B. DT.Rows(1).Item("ID")
- C. DT.Rows(0).Item("ID")
- D. DT.Rows(0).ID
Answer: B
NEW QUESTION 119
A developer is adding a Log Message activity in an Exit section of a single state within a state machine. When will the Log Message activity in the Exit section be executed?
- A. After the activities in the Entry section are executed and the transition to the next state is confirmed.
- B. After the activities in the Entry section and the activities in the trigger are executed.
- C. Immediately after the activities in the Entry section are executed.
- D. After the activities in the Entry section are executed, but only if there are exceptions.
Answer: A
NEW QUESTION 120
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.
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.
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.
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.
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.
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!
- A. Send us your feed back on this
Answer: A
NEW QUESTION 121
A developer wants to extract data from "Sheet1" of the "Test.xls" file using the following code:
In addition, the developer configured the following properties of the Read Range activity:
Based on the exhibits, what is the result of the execution?
- A. OutputDataTable object will have 2 columns and 1 row containing values of cells "A2" and "B2"
- B. OutputDataTable object will have 2 columns and 1 row containing values of cells "A1" and "B1"
- C. OutputDataTable object will have 2 columns and 2 rows containing values of cells "A2" and "B2"
- D. OutputDataTable object will have 2 columns and 10000 rows; the first row will contain values of cells "A1" and "B1"
Answer: D
NEW QUESTION 122
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 only works in the background.
Workbook Write Range activity will create the file in the WorkbookPath property if it does not exist. - 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 can only be used when Excel is installed.
Workbook Write Range activity can be faster by writing the data directly to the file. - D. 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.
Answer: C
NEW QUESTION 123
How can you identify a column in a DataTable?
Options are :
- A. By using the column default value.
- B. By using the column name.
- C. By using the row index.
- D. By using the column index.
Answer: B,D
NEW QUESTION 124
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 125
How can you retrieve the value stored in a Queue Item variable?
Options are :
- A. Use the Deserialize Json activity
- B. Use the SpecificContent property
- C. Use the Deserialize Xml activity
Answer: B
NEW QUESTION 126
......
Ultimate Guide to Prepare UiPath-ARDv1 Certification Exam for UiPath Certified: https://www.passsureexam.com/UiPath-ARDv1-pass4sure-exam-dumps.html
UiPath-ARDv1 Ultimate Study Guide: https://drive.google.com/open?id=14gFq1k7UzoLBeNBSGONxxsQ5SQVvsFHx