Page 1 out of 26. Viewing questions 1-15 out of 382
Question 1
At indication time, the Strict Selector has the following functionalities available:
A.
Open in UiExplorer, Copy to clipboard, Show all matches.
B.
Refresh, Open in UiExplorer, Copy to clipboard.
C.
Accuracy, Open in UiExplorer, Copy to clipboard, Show all matches.
D.
Ignore text, Copy to clipboard, Show all matches.
Answer:
C
User Votes:
A
50%
B
50%
C
50%
D
50%
Discussions
0/ 1000
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 ", "?
A.
String.Join(UserNames, ",")
B.
String.Join(", ", UserNames)
C.
String.Concat(UserNames,",")
D.
String.Concat(",", UserNames)
Answer:
B
User Votes:
A
50%
B
50%
C
50%
D
50%
Discussions
0/ 1000
Question 3
What is the default URL of the OCR server that runs the Computer Vision service?
A.
https://server.uipath.com/
B.
https://cvserver.uipath.com/
C.
https://cv.uipath.com/
D.
https://computervision.uipath.com/
Answer:
C
User Votes:
A
50%
B
50%
C
50%
D
50%
Discussions
0/ 1000
Question 4
What advantages do pre-built connectors in UiPath Integration Service offer?
A.
Reducing the need for Ul and API automation, allowing developers to work exclusively with connectors.
B.
Simplified integration with popular applications, faster deployment, and integration across all UiPath Platform product solutions.
C.
Providing a fully customizable catalog of connectors for developing proprietary applications.
D.
Replacing all types of authorization and authentication protocols with a single, standardized method.
Answer:
B
User Votes:
A
50%
B
50%
C
50%
D
50%
Discussions
0/ 1000
Question 5
Which LINQ method is used to filter data in a List or Data Table based on a condition?
A.
OrderBy
B.
Where
C.
GroupBy
D.
Select
Answer:
B
User Votes:
A
50%
B
50%
C
50%
D
50%
Discussions
0/ 1000
Question 6
Which activity can be used to transition a Background Process to Foreground?
A.
Use Foreground
B.
Activate
C.
Maximize Window
D.
Set Focus
Answer:
A
User Votes:
A
50%
B
50%
C
50%
D
50%
Discussions
0/ 1000
Question 7
When configuring the Max # of retries for the queue in Orchestrator to "1" for your process, and the queue has 5 transaction items. At runtime, the first transaction item throws a Business Rule Exception. How does the process proceed?
A.
Transaction is not retried and the process stops.
B.
Transaction is not retried but remaining transactions continue processing.
C.
Transaction is retried only one time.
D.
Transaction is retried multiple times until processed successfully.
Answer:
B
User Votes:
A
50%
B
50%
C
50%
D
50%
Discussions
0/ 1000
Question 8
A developer has created a variable of type List of Strings named "UsersList", and initialized it with an empty list: "UsersList = new List(Of String)". What is printed in the log message after the following Invoke Code is executed?
A.
0
B.
2
C.
Object reference not set to an instance exception is thrown
D.
System Argument Exception is thrown
Answer:
A
User Votes:
A
50%
B
50%
C
50%
D
50%
Discussions
0/ 1000
Question 9
What are the components that define a state within a State Machine in UiPath Studio?
A.
Activities, Connectors, and Annotations.
B.
Input Arguments, Output Arguments, and Variables.
C.
Sequence, Flowchart, and Transactional Business Process.
D.
Entry, Exit, and Transition Actions with Trigger Conditions.
Answer:
D
User Votes:
A
50%
B
50%
C
50%
D
50%
Discussions
0/ 1000
Question 10
Starting with UiPath Studio version 2022.10, what happens to dependencies that lack Windows compatibility when they are converted in a project?
A.
They are replaced with compatible alternatives.
B.
They are removed from the project.
C.
They are marked as unresolved.
D.
They are automatically resolved.
Answer:
C
User Votes:
A
50%
B
50%
C
50%
D
50%
Discussions
0/ 1000
Question 11
A developer defines new log fields using the Add Log Fields activity. When will the custom log fields stop being added to the robot execution logs?
A.
When an Exception is caught and handled.
B.
When a Remove Log Fields activity is used to remove them.
C.
When a Log Message activity is executed with Log Level = Warn or higher.
D.
When the first Log Message activity is executed.
Answer:
B
User Votes:
A
50%
B
50%
C
50%
D
50%
Discussions
0/ 1000
Question 12
What is the purpose of the Interval filter in the Orchestrator's Monitoring page?
A.
It allows you to control the granularity of the displayed data and check the health of your system in either the last day or the last hour.
B.
It allows you to allocate licenses per machine for the displayed data.
C.
It allows you to choose between background and foreground processes for the displayed data.
D.
It enables you to sort the displayed data based on job priorities.
Answer:
A
User Votes:
A
50%
B
50%
C
50%
D
50%
Discussions
0/ 1000
Question 13
What status needs to be selected in the Set Transaction Status activity in UiPath Studio so that the respective Queue Item will be retried?
A.
Failed
B.
Retried
C.
Abandoned
D.
Postponed
Answer:
A
User Votes:
A
50%
B
50%
C
50%
D
50%
Discussions
0/ 1000
Question 14
Considering that the attached table is stored in a variable called “dt”. Which LINQ query can be used to return the maximum total Quantity?
A.
dt.AsEnumerable. GroupBy(Function(x)x("Item"). ToString). Max(Function(x)x.Sum(Function(y) Convert.Tolnt32(y("Quantity").ToString)))
B.
dt.AsEnumerable. Max(Function(x) Convert. Tolnt32(x("Quantity"). ToString))
C.
dt.AsEnumerable. Max(Function(x) Convert.Tolnt32(x("Quantity"). ToString))("Item")
D.
dt.AsEnumerable. OrderByDescending(Function(x) Convert. Tolnt32(x("Quantity").ToString)). First.Item("Quantity")
Answer:
A
User Votes:
A
50%
B
50%
C
50%
D
50%
Discussions
0/ 1000
Question 15
Which of the following options is correct regarding the below Object Repository tree structure?
A.
One ScreenTwo ApplicationsFive UI Elements
B.
One ApplicationTwo UI ElementsFive Screens
C.
One LibraryOne ApplicationTwo ScreensFive UI Elements