UiPath Automation Developer Professional v1 UiPath-ADPv1 Exam Practice Test

Page: 1 / 14
Total 205 questions
Question 1

What does Application Exception describe?



Answer : A

An Application Exception typically refers to errors arising from technical issues with applications, such as non-responsiveness or crashes. These exceptions are not related to the logic or data used by the application but are due to the application's functioning itself.


Question 2

A developer has created a string array variable as shown below:

UserNames = {"Jane", "Jack", "Jill", "John"}

Which expression should the developer use in a Log Message activity to print the elements of the array separated by the string ","?



Answer : C

To print the elements of a string array separated by a specific string, the String.Join method is used in C#. This method takes two parameters: the first is the separator string and the second is the array to join into a single string.

Given the options and the requirement to separate array elements with a comma and a space (', '), the correct expression to use in a Log Message activity would be:

C . String.Join(', ', UserNames)

This will produce a single string with each element of the UserNames array separated by ', ' (a comma followed by a space).


Question 3

How can UlPath Orchestrator help address potential Issues before they become critical problems?



Answer : B

UiPath Orchestrator provides proactive monitoring and alerting features. These are designed to identify and notify about potential issues before they escalate into critical problems, enabling timely intervention and resolution.


Question 4

A developer is using a Type into activity with the Input Method set to Simulate Which property needs to Be enabled for the activity to execute even it the target Ul element is deactivated or read-only?



Answer : B

When using the Type Into activity with the Input Method set to Simulate, the 'Alter disabled element' property should be enabled to execute the activity even if the target UI element is deactivated or read-only.


Question 5

How do you subtract a specific TimeSpan from "Today" in VB.NET?



Answer : D

TheTodayproperty of theDateTimestructure returns the current date with the time component set to zero1.TheSubtractmethod of theDateTimestructure returns a newDateTimeobject that is the result of subtracting a specified time interval from this instance2.TheTimeSpanstructure represents a time interval that can be expressed in days, hours, minutes, seconds, and milliseconds3.

Option D is the correct way to subtract a specificTimeSpanfromTodayin VB.NET. For example, the following code snippet subtracts one day and two hours from the current date and displays the result:

Dim ts As New TimeSpan (1, 2, 0, 0) ' One day and two hours

Dim result As DateTime = Today.Subtract (ts) ' Subtract from Today

Console.WriteLine (result.ToString ('d')) ' Display the result

Option A is not valid, because there is noSubtractSpanFrommethod in theDateTimestructure. Option B is not correct, because it subtracts theTimeSpanfrom the current date and time, not just the date. Option C is not valid, because there is noSubtractUsingDatemethod in theDateTimestructure.


Question 6

What is the default OCR engine used in CV Screen Scope?



Answer : A

The CV Screen Scope activity is used to initialize the UiPath Computer Vision neural network and provide a scope for all subsequent Computer Vision activities. It allows you to select which OCR engine you want to use for scraping the text in the target application. The default OCR engine used for this activity is UiPath Screen OCR, which is an in-house, machine-learning based OCR targeted for screens and digital text. It can be used as an alternative to the other OCR engines, such as Google OCR, Microsoft OCR, or Tesseract OCR.The engine can be changed by manually replacing the default engine with one of your choice1.

The other options are incorrect because:

Option B is incorrect because Microsoft OCR is not the default OCR engine used in CV Screen Scope.Microsoft OCR is an OCR engine that uses the MODI (Microsoft Office Document Imaging) Library to process images and extract text2.

Option C is incorrect because Tesseract OCR is not the default OCR engine used in CV Screen Scope.Tesseract OCR is an OCR engine that uses the open-source Tesseract library to process images and extract text3.

Option D is incorrect because Microsoft Azure Computer Vision OCR is not the default OCR engine used in CV Screen Scope.Microsoft Azure Computer Vision OCR is an OCR engine that uses the Microsoft Azure Computer Vision API to process images and extract text4.


Activities - CV Screen Scope - UiPath Documentation Portal

Activities - Microsoft OCR - UiPath Documentation Portal

Activities - Tesseract OCR - UiPath Documentation Portal

Activities - Microsoft Azure Computer Vision OCR - UiPath Documentation Portal

Question 7

In UlPath Studio, when a developer executes a workflow in Debug mode and the process stops at a breakpoint, which panel enables the developer to assign values lo variables prior to resuming the process?



Answer : D

In UiPath Studio, during debugging when a workflow hits a breakpoint, the developer can assign values to variables using both the Locals Panel and the Immediate Panel. This feature allows for dynamic testing and troubleshooting.


Page:    1 / 14   
Total 205 questions