UiPath UIPATH-ARDV1 UiPath Advanced RPA Developer v1.0 Exam (UiARD) Online Training
UiPath UIPATH-ARDV1 Online Training
The questions for UIPATH-ARDV1 were last updated at Nov 23,2024.
- Exam Code: UIPATH-ARDV1
- Exam Name: UiPath Advanced RPA Developer v1.0 Exam (UiARD)
- Certification Provider: UiPath
- Latest update: Nov 23,2024
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 an external assembly (.dll) of the rule and copy it to the Studio install location.
- B . Create an external assembly (.dll) of the rule and copy it to the project location.
- C . Create a Nuget package (.nupkg) of the rule and publish it to Orchestrator.
- D . Create a Nuget package (.nupkg) of the rule and install it in a Studio project as a dependency.
DRAG DROP
Based on the exhibit that represents the "Deadline" in the yyyy-mm-dd format, what is the correct sequence in which the Queue Items are processed by a single Performer workflow?NOTE: Drag the Queue Item Name found on the “Left” and drop on the correct Process Order found on the “Right”
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: Warn
Message: exception.Message + "at" + exception.Source - B . Level: Error
Message: "Exception occurred at" + exception.Source - C . Level: Fatal
Message: exception.Message - D . Level: Info
Message: "Application Exception at" + exception.Source
In the Robotic Enterprise (RE) Framework, what is the initial value of TransactionNumber?
- A . 0
- B . 1
- C . []
- D . Nothing
A developer is working on an automation. The automated process must log into Citrix and click on the "Generate Shipment Details" button. Ideally, this generates a table of shipping records. If the generated table displays only the header row and no data is available, then it should be marked as an exception since the data is incomplete.
What is this type of exception?
- A . BusinessRuleException
- B . NullReferenceException
- C . ApplicationException
- D . SystemException
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 . Check In
- B . Commit
- C . Show Changes
- D . Get Latest Version
A developer was reviewing an Orchestration process whose "main" attribute is set to Main.xaml in project.json.
However, the process is not pausing as intended.
What is a possible cause for this issue?
- A . UI activities were not used in the process.
- B . "Wait for Form Task and Resume" activity was called in Main.xaml.
- C . Process created a task in the Orchestrator.
- D . "Wait for Form Task and Resume" activity was called in GetApproval.xaml.
DRAG DROP
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.
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 notexist. 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.
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.LastIndexOf("_")+1,8)
- B . strinput.Substring(strInput.IndexOf("_")+1,strInput.IndexOf(".")1)
- C . strinput.Substring(strInput.IndexOf("_")+1.8)
- D . strinput.Substring(strInput.IndexOf("_")+1,strInput.IndexOf("."))
Hi