UiPath-ADPv1 UiPath Automation Developer Professional v1 Exam Practice Test

Page: 1 / 14
Total 205 questions
Question 1

Which of the following options is true about the types of robot installation?



Answer : B

The service mode is recommended for running unattended automations in UiPath. This mode allows robots to run without needing a user to be logged in, making it ideal for unattended scenarios.


Question 2

What is the default polling interval set for an event trigger?



Answer : B

When you create a new connection and set up an event trigger on that connection, the default polling interval is set to 5 minutes. This means that the event trigger checks for new object events every 5 minutes. You can customize this interval using the Adjustable Polling Interval feature, which allows you to choose the interval on which event triggers check for new object events. The polling interval can be changed in two ways: from a specific connector's page or from the Connections tab. The polling interval is displayed only for connections with added triggers. Updating the polling interval affects all the associated triggers on a connection


Question 3

When developing a new project using REf ramework. logging in to multiple applications Is required. What is the recommended location to accomplish this task?



Answer : A

In the REFramework (Robotic Enterprise Framework), the initialization of all required applications should ideally be done in the 'InitAllApplications.xaml' file. This helps in keeping the project organized and maintains a standard structure.


Question 4

A developer extracts a date from an email. The date will always be In the same format and always from the past. Some examples of this format are: "3 Mar 2023". "20 Nov 2021". The name of the variable where the date is saved is DateString What expression should the developer use to check If the extracted date is within the last 7 days?



Answer : C

The date is in the format 'd MMM yyyy' (e.g., '3 Mar 2023').

The correct expression is: (DateTime.Now - DateTime.ParseExact(DateString, 'd MMM yyyy', CultureInfo.InvariantCulture)).Days < 7.

This expression calculates the difference in days between the current date (DateTime.Now) and the parsed date (DateTime.ParseExact(DateString, 'd MMM yyyy', CultureInfo.InvariantCulture)).

It then checks if this difference is less than 7 days, which means the date is within the last 7 days.


Question 5

A developer Intends to incorporate a Flow Switch activity within a Flowchart. What Is a characteristic of this activity?



Answer : C

In UiPath, the Flow Switch activity is commonly used within flowcharts. Its default TypeArgument property is set to Int32, which means it is primarily used to handle integer-based decision branching.


Question 6

What is the correct method to check how many resources are utilized in a personal workspace in UiPath Orchestrator?



Answer : A

This is the correct method to check how many resources are utilized in a personal workspace in UiPath Orchestrator.You can see the number of runtimes, licenses, and storage used by the workspace, as well as the available quota for each resource type. You can also adjust the quota allocation for the workspace if needed. For more information, please refer toManaging Personal Workspacesin the UiPath Documentation Portal.


Question 7

While developing a test case using UiPath.Testing.Activities. which testing activity enables to include another activity within its body?



Answer : D

In UiPath Testing Activities, the 'Verify Expression' activity is designed to evaluate expressions and can include other activities within its body. This feature is particularly useful in test cases where you need to assert the outcome of a specific expression or condition. By embedding other activities within the 'Verify Expression' activity, users can execute additional actions or checks as part of the verification process, enhancing the flexibility and depth of testing scenarios within UiPath projects.Reference:

UiPath Documentation: Testing Activities Guide


Page:    1 / 14   
Total 205 questions