0% found this document useful (0 votes)
27 views

UiPath Adv Professional Dump

Document contains questions from the UiPath ADP examination

Uploaded by

Sachin Dixit
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
27 views

UiPath Adv Professional Dump

Document contains questions from the UiPath ADP examination

Uploaded by

Sachin Dixit
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 24

1. What are the primary functions of the UiPath Integration Service?

• A. Enables automation with a library of connectors, manages connections easily with


standardized authentication, kicks off automations with server-side triggers or events,
provides curated activities and events, simplifies automation design. Most Voted
• B. Automates UI design, manages API connections, provides limited activities and
events, simplifies automation design.
• C. Enables automation with API integration, manages connections with user-provided
authentication, kicks off automations based on application-specific triggers, simplifies
automation design with the help of third-party libraries.
• D. Enables automation with UI components, manages API keys, kicks off automations
with client-side triggers, provides curated events.

2.What happens when closing a Remote Debugging Connection while a debugging execution is
in progress?

• A. The remote robot continues the execution after Studio closes the connection.
• B. Debugging execution ends in exception, then the connection is closed.
• C. Debugging execution stops gracefully, then the connection is closed.
• D. It is not possible to close the connection while debugging is in progress.

3.Where is the TransactionNumber incremented in the REFramework?

• A. Only in the RetryCurrentTransaction.xaml workflow.


• B. Only in the SetTransactionStatus.xaml workflow.
• C. In the New Transaction transition.
• D. In the RetryCurrentTransaction.xaml workflow and in the SetTransactionStatus.xaml
workflow.

4.Which logging level includes the following information by default?


1. Execution Started log entry - generated every time a process is started.
2. Execution Ended log entry - generated every time a process is finalized.
3. Transaction Started log entry - generated every time a transaction item is obtained by the
robot from Orchestrator.
4. Transaction Ended log entry - generated every time the robot sets the transaction status to
either Success or Failed.
5. Activity Information log entry - generated every time an activity is started, faulted or finished
inside a workflow.
6. Arguments and Variables Information log entry - show values of the variables and arguments
that are used.

• A. Verbose
• B. Trace
• C. Critical
• D. Information
5.How would you define a linear process in UiPath?

• A. The steps of the process refer to the execution of steps in a sequential manner,
where each subsequent step depends on the successful completion of the previous
step.
• B. The steps of the process are performed multiple times, but each time different data
items are used.
• C. The steps of the process repeat multiple times over different data items. However,
the automation design is such that each repeatable part processes independently.
• D. The process steps are performed only once. If the need is to process additional data,
then the automation must execute again.

6.A developer is building a process that needs to click an element which requires a mouse
hover to become visible. However, the element does not appear with the default click setting.
The input method for the Click activity is Send Window Message.
Which property should the developer configure to be able to click the element?

• A. The developer should change the input method to Simulate and the
CursorMotionType to Instant.
• B. The developer should change the input method to Hardware Events and the
CursorMotionType to Smooth.
• C. The property AlterIfDisabled should be set to False.
• D. The property AlterIfDisabled should be set to True.

7.A developer wants to create an automation in which the input from the user and pre-defined
conditions determine the transition between stages. In UiPath Studio, which is the
recommended type of workflow that meets the requirement?

• A. Flowchart
• B. Workflow
• C. State Machine
• D. Global Exception Handler
8.A developer configured the properties for a Click activity as shown below:

What happens if the activity cannot find its target at runtime?

• A. An exception is thrown after 10 milliseconds.


• B. An exception is thrown after 10 seconds.
• C. The next activity is executed after 10 seconds.
• D. The next activity is executed after 10 milliseconds.

9.What is the default priority value for the Job Priority field in UiPath Orchestrator when
starting a job manually?

• A. Inherited
• B. Medium
• C. High
• D. Low

10.Consider testing a workflow that computes the sum of two numbers having the data driven
test data from the Excel file below:

Expanding the functionality of the workflow to compute the sum of three numbers, the data
needs to be updated as well to accommodate the new scenario:

What are steps to do that?

• A. Click Right on the Test Case and select Update Test Data.
• B. Click Right on the Test Case and select Add Test Data.
• C. Click Right on the Test Case and select Refresh Test Data.
• D. Click Right on the Test Case and select Remove Test Data.

11.Data from an Excel file is read into a data table named "dtEmployee", as displayed in the
following graphic:
A developer needs to filter the data table to obtain all rows representing employees from the
Finance and IT departments with a Salary under 30,000. Which expression yields the desired
outcomes?

• A. dtEmployee.Select("([Department]='IT' AND [Department]='Finance') AND [Salary] <


30000")
• B. dtEmployee.Select("[Department]='IT OR [Department]='Finance' OR [Salary] <
30000")
• C. dtEmployee.Select("[Department]='IT' OR [Department]= 'Finance' AND [Salary] <
30000")
• D. dtEmployee.Select("([Department]='IT' OR [Department]='Finance') AND [Salary] <
30000")

12.A developer is building an automation that must interact with a destination remote
computer reached by jumping through multiple RDP connections, as described by the following
scenario:
- The Robot is installed on Machine A, which connects through RDP to Machine B.
- From Machine B another RDP connection is opened to Machine C, where the automation must
be performed.
Which of the following scenarios is appropriate for the developer who wants to use UI
Automation activities?

• A. UI Automation can be used and the following are prerequisites:


Machine A - install RDP extension.
Machine B - install RemoteRuntime.msi.
Machine C - install RemoteRuntime.msi.
• B. UI Automation can be used and the following are prerequisites:
Machine A - install RDP extension.
Machine B - install RDP extension and RemoteRuntime.msi.
Machine C - install RemoteRuntime.msi.
• C. UI Automation can be used and the following are prerequisites:
Machine A - no requirement.
Machine B - no requirement.
Machine C - install RemoteRuntime.msi.
• D. UI Automation can be used and the following are prerequisites:
Machine A - install RDP extension.
Machine B - no requirement.
Machine C - install RemoteRuntime.msi.

13.How does UiPath handle different dependency versions for multiple running processes that
run at the same time?

• A. Each running process automatically adapts to the available dependency version.


• B. Each running process uses its own required version of the dependency.
• C. All running processes use the latest version of the dependency available.
• D. Running processes use the earliest compatible dependency version.

14.In order for a developer to utilize the default REFramework without relying on Orchestrator
queues, what is the essential prerequisite to ensure that the project does not interact with
Orchestrator?

• A. Remove the Get Transaction Data state from the Main state machine. Remove the
OrchestratorQueueName setting from Config.xlsx & change the variable type.
• B. Eliminate the Get Transaction Data state from the Main state machine. Exclude the
Get Transaction Item activity from the project & change the variable type.
• C. Exclude the Get Transaction Item activity from the project. Eliminate the three
SetTransactionStatus activities from the SetTransactionStatus workflow & change the
variable type.
• D. Omit the OrchestratorQueueName setting from the Config.xlsx file. Exclude the three
SetTransactionStatus activities from the SetTransactionStatus workflow & change the
variable type.

15.A developer wants to add items to a list of strings using the Invoke Method activity. The list
is declared as follows:
The Invoke Method activity has the following properties:

The Parameters property is as follows:

Based on the information shown in the exhibits what is the outcome of the Invoke Method
activity?

• A. An exception will be thrown.


• B. Colors will contain an item with the value "Yellow".
• C. Colors will contain an item with an empty value.
• D. Colors will contain an item with the value "Colors: Yellow".

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

• A. 1 minute
• B. 5 minutes
• C. 10 minutes
• D. 15 minutes

17.When should the Show Elements button be used in the Computer Vision wizard?

• A. Highlighting all UI elements that have been identified by the Computer Vision
analysis.
• B. Displaying a list of all available UI elements and their properties.
• C. Activating a real-time view of the target app's UI during automation.
• D. Filtering out specific UI elements from being processed by the Computer Vision
engine.

18.In a UiPath State Machine workflow, which section of State activity is used to specify
conditional/triggers logic and multiple outgoing transitions in a state machine?

• A. Entry
• B. Transitions
• C. Triggers
• D. Exit

19.In a UiPath REFramework project, what is the primary purpose of using Custom Log Fields?

• A. To maintain contextual insights within log messages, including secure details like
credentials.
• B. To add specific contextual information to log messages that are relevant to the
automation process.
• C. To modify the representation of logged contextual data as it is displayed in the
Orchestrator.
• D. To generate extra variables alongside log messages, enhancing workflow
understanding.

20.What method can be used to change the index of an existing column in a datatable?

• A. MoveAt
• B. SetOrdinal
• C. SetColumnIndex
• D. SetIndex
21.A developer is building a process that types data into input fields using the Hardware Events
input method. Which property of the Type Into activity should be modified to reduce the pace at
which the input string characters are typed into the fields?

• A. Delay before
• B. Delay between keys
• C. Delay after
• D. Alter disabled element

22.While working in an RPA testing project, you encountered the following activity in one of the
workflows included in the project.

What action can you perform in your mocked file to replace the functionality of the
MessageBox with a LogMessage during mock testing?

• A. Synchronize mock.
• B. Create mock workflow.
• C. Surround activity with mock.
• D. Remove mock activity.

23.A developer is building an automation which types text into a text file. The Activity Project
Settings tor UI Automation Modern activities are set as follows:
The developer has configured the properties of a Type Into activity as follows:

What is the behavior of the Type Into activity when executing the workflow?

• A. The activity will use only properties set in Activity Project Settings.
• B. The activity will remove Multi Line in Run mode and a Single Line in Debug mode.
• C. The activity will remove a Single Line in Run mode and in Debug mode.
• D. The activity will remove a Single Line in Run mode and Multi Line in Debug mode.
24.What do the percentages from the Test Explorer panel represent?

• A. Percent of test data run.


• B. Correctness of the code percent.
• C. Coverage percent.
• D. Passing percent.

25.To retrieve all Outlook emails with the word "UiPath" in the subject, which filtering property
and filter schema should a developer use?

• A. Property: FilterByMessageIds -
Schema: "@SQL=""urn:schemas:httpmail:subject'"' like 'UiPath%'"
• B. Property: Filter -
Schema: "@SQL=""urn:schemas:httpmail:subject"" like 'UiPath%'"
• C. Property: Filter -
Schema: "@SQL=""urn:schemas:httpmail:subject"" like '%UiPath%'"
• D. Property: FilterByMessageIds -
Schema: "@SQL=""urn:schemas:httpmail:subject"" like '%UiPath%'"

26.What is the use of job priorities in unattended automations within UiPath Orchestrator?

• A. To determine machine resource allocation among processes.


• B. To sort and organize tasks within a folder.
• C. To create job dependencies that must be completed before new job execution.
• D. To determine which processes should be executed first when dealing with multiple
jobs.

27.Which command in the UiPath installation folder configures the


UIPath.RemoteDebugging.Agent utility on a Windows robot to accept remote debugging
requests from Studio?

• A. UiPath.RemoteDebugging.Agent.exe start --port --password --verbose


• B. UiPath.RemoteDebugging.Agent.exe enable --port --password --verbose
• C. UiPath.RemoteDebugging.Agent.exe enable --port --username --password --verbose
• D. dotnet ./UiPath.RemoteDebugging.Agent.dll enable --port --password --verbose

28.When installing UiPath Studio, which of the following actions require administrator
privileges?

• A. Administrator privileges are not required for installing UiPath Studio.


• B. Administrator privileges are required for installing the robot in both service mode and
user mode.
• C. Administrator privileges are required for installing the robot in user mode.
• D. Administrator privileges are required for installing the robot in service mode.

29.Where in the REFramework template project is the "SetTransactionStatus.xaml" invoked?

• A. In the Finally section of the Try Catch activity in the End Process state.
• B. In the Try section of the Try Catch activity in the End Process state.
• C. In the Try and Catches sections of the Try Catch activity in the Process Transaction
state.
• D. In the Try section of the Try Catch activity in the Process Transaction state.

30.What is a pre-requisite for running functional test cases in REFramework?

• A. Invoke Process XAML file


• B. Invoke SetTransactionStatus XAML file
• C. Invoke Main XAML file
• D. Invoke InitAllSettings XAML file

The following table is stored in a variable called "dt".


What will the value of the qty variable be after executing the Assign activity?

• A. 5
• B. 10
• C. 80
• D. null

31.What is the purpose of the Interval filter in the Orchestrator's Monitoring page?

• A. It enables you to sort the displayed data based on job priorities.


• B. It allows you to choose between background and foreground processes for the
displayed data.
• C. It allows you to allocate licenses per machine for the displayed data.
• D. 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.

32.A developer implemented a process using the Robotic Enterprise Framework and an
Orchestrator queue. The MaxRetryNumber from the "Config.xlsx" file is set to "1" and the Max #
of retries from the Queue settings from Orchestrator is set to "2". At runtime, the first
transaction item throws a Business Exception.
How many times will the transaction be retried?

• A. The transaction will not be retried.


• B. The transaction will be retried only one time.
• C. The transaction will be retried 2 times.
• D. The transaction will be retried multiple times, until it will be processed successfully.

33.What role do Triggers play in the UiPath Integration Service?


• A. Provide a mechanism for subscribing to specific events from third-party applications,
automatically starting processes in Orchestrator.
• B. Assist in the creation of automation projects by providing event-based activities.
• C. Manage connections between UiPath Studio and third-party applications.
• D. Provide a mechanism for starting processes on a scheduled basis from Orchestrator.

34.Which of the following options is correct about a State Machine layout?

• A. Can have only one initial state and multiple final states.
• B. Can have only one initial state and only one final state.
• C. Can have multiple initial states and multiple final states.
• D. Can have multiple initial states and only one final state.

35.A developer needs to create a repetitive process in the REFramework. Following the best
practices, which action(s) should be performed to defend against potential robot crashes such
as "out of memory"?

• A. Build a script that compares current CPU usage values to a threshold and clears data
as needed.
• B. After every transaction, clear the transaction data, close the applications, and re-
open the applications.
• C. Add a "Clear Collection" activity at the beginning of the Process.xaml workflow.
• D. All "Invoke Workflow File" activities from the Main.xaml file should be marked with
the Isolated option.

36.Which of the following demonstrates the correct syntax for using the Vb.Net "If" Operator?

• A. If(condition1, valueIfTrue) ElseIf(valueIfFalse)


• B. valueIfTrue If condition1 Else valueIfFalse
• C. If condition1 Then valueIfTrue Elself valueIfFalse
• D. If(condition1, valueIfTrue, valueIfFalse)

37.A developer creates a process that uses data from multiple sources and uploads it to an
Orchestrator queue. The data originates from emails in different email inboxes and needs to be
processed in the same order in which the email was received. To ensure the Queue Items are
processed in the correct order, which property of the Add Queue Item activity should be used?

• A. Postpone
• B. Reference
• C. ItemInformation
• D. Deadline

38.A developer is working on an automation using the REFramework. Each transaction item
represents a piece of client information. For each customer, the automated procedure must
click the "Generate Shipment Details" button. This generates a table of shipment records for
each customer.
What type of exception occurs when the data is not accessible, the created table displays only
the header row, and processing for that client must be halted?

• A. BusinessRuleException
• B. NullReferenceException
• C. ApplicationException
• D. SystemException

39.What are the three main components of UiPath Integration Service?

• A. Connectors, API Tokens, Triggers.


• B. Connectors, Connections, Orchestrator.
• C. Connectors, Connections, Triggers.
• D. Activities, Connections, Triggers.

40.DRAG DROP -
What are the steps to publish a project from UiPath Studio?
Instructions: Drag the Description found on the "Left" and drop on the correct Step Sequence found on
the "Right".

Answer:
41.A developer examines a workflow in which filenames are stored within a collection. The
collection is initialized with a single filename. When adding a new filename to the collection,
which collection variable type will cause an error?

• A. System.Collections.Generic.Dictionary
• B. System.Collections.Generic.List
• C. System.Array
• D. System.Data.DataTable

42.What is the default URL of the OCR server that runs the Computer Vision service?

• A. https://server.uipath.com/
• B. https://computervision.uipath.com/
• C. https://cvserver.uipath.com/
• D. https://cv.uipath.com/

43.In the context of a linear process, implemented with REFramework, how many times will the
process enter the Get Transaction Data state?

• A. 1 time.
• B. 2 times.
• C. The process will not enter the Get Transaction Data state because a linear process is
not transactional.
• D. Until there are no more queue items left unprocessed in Orchestrator.

44.A project built using REFramework pulls phone numbers from a database of employees and
creates queue items for each one. Following processing, these elements must be added to a
financing application. The queue item holding a phone number becomes invalid if a digit is
accidentally left out because of a human mistake. As a requirement, queue items that contain
partial numbers should not be accepted.
What type of error should be thrown according to best practices?

• A. Business Exception
• B. Application Exception
• C. Fatal Exception
• D. System Exception

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

• A. Navigate to Tenant > Folders, click the Personal Workspaces tab, and then click
Manage Resources for the desired workspace.
• B. Navigate to Tenant > Folders, click the All Workspaces tab, and then click Check
Resources for the desired workspace.
• C. Navigate to Tenant > Users, click the Personal Workspaces tab, and then click
Resources for the desired workspace.
• D. Navigate to Tenant > Folders, click the Personal Workspaces tab, and then click See
Usage for the desired workspace.

46.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 removed from the project.


• B. They are automatically resolved.
• C. They are replaced with compatible alternatives.
• D. They are marked as unresolved.

47.DRAG DROP -
How should the computation of the signature be done for client apps that receive Orchestrator requests
and need to check their authenticity?
Instructions: Drag the Description found on the left and drop on the correct Step Sequence found on the
right.

48.What is the recommended approach for handling tabular data when building a REFramework
transactional project in UiPath?

• A. Utilize a DataTable variable to store and process the tabular data.


• B. Save the tabular data in multiple CSV files for easier manipulation.
• C. Use separate variables to store each column of the tabular data.
• D. Implement custom activities to handle the tabular data.

49.What is the purpose of credential stores in UiPath Orchestrator?

• A. To store non-sensitive data and configuration settings for UiPath Studio projects.
• B. To store Orchestrator event logs and related data for auditing purposes.
• C. To securely store sensitive data such as Robot credentials and Credential Assets for
use in automation processes.
• D. To serve as a centralized location for storing pre-built automation workflows and
processes.

50.Which of the following statements is true about the existing UiPath Studio installation
packages?

• A. The Attended Robot installation package installs only the UiPath Robot.
• B. The Unattended Robot installation package installs only UiPath Studio, Assistant, and
Robot.
• C. The Attended Robot installation package installs only UiPath Studio, and Robot.
• D. The Automation Developer installation package installs only UiPath Studio, Assistant,
and Robot.

51.When a developer runs a process using the REFramework, with the process utilizing
Orchestrator queues and a queue already created with the Name provided and the Auto Retry
function disabled, which states will be executed without errors?

• A. Initialization -> Get Transaction Data -> Process Transaction -> End Process
• B. Initialization -> Get Transaction Data -> End Process
• C. Initialization -> Process Transaction -> End Process
• D. Initialization -> End Process

52.What is the output type returned when using a Get Test Data Queue Item activity?

• A. QueueItem
• B. Object
• C. Dictionary

53.Following UiPath best practices, which project structure is best-suited for complex
processes in UiPath Studio?

• A. Sequence
• B. Flowchart
• C. Global Exception Handler
• D. State Machine
54.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. Max(Function(x) Convert.ToInt32(x("Quantity").ToString))


• B. dt.AsEnumerable. Max(Function(x) Convert.ToInt32(x("Quantity").ToString))("Item")
• C. dt.AsEnumerable. GroupBy(Function(x) x("Item").ToString). Max(Function(x)
x.Sum(Function(y) Convert.ToInt32(y("Quantity").ToString)))
• D. dt.AsEnumerable. OrderByDescending(Function(x)
Convert.ToInt32(x("Quantity").ToString)). First.Item("Quantity")

55.What is the purpose of the Invoke Code activity in UiPath?

• A. Invokes VB.NET or C# code, optionally passing it a list of input arguments.


• B. Invokes VB.NET or Java code, optionally passing it a list of input arguments.
• C. Invokes VB.NET code, optionally passing it a list of input arguments.
• D. Invokes Java code, optionally passing it a list of input arguments.

56.Which of the following is an outcome of converting a personal workspace into a folder in


UiPath Orchestrator?

• A. The owner of the initial workspace and the admin user are added by default to the
newly created folder and assigned the Personal Workspace Administrator role.
• B. The owner of the initial workspace is added by default to the newly created folder
and assigned the Folder Administrator role.
• C. The owner of the initial workspace loses access to the newly created folder and the
existing admin users are added by default.
• D. The admin user is added by default to the newly created folder with the User
Administrator role.

57.In the Robotic Enterprise (RE) Framework, at which point should a developer log a clear
message with the Logging Level set to "Information," adhering to the best practices for
automating a production-level process?

• A. Whenever an exception is caught in a Catch block.


• B. Whenever data is fetched from external sources.
• C. Whenever an argument or value is used.
• D. Whenever the robot encounters an error on a Queue Item.

58.A developer has defined a variable named “CurrentDate” of type DateTime. Which of the
following expressions can be used to show what hour was 12 hours prior to the date from the
variable?

• A. DateTime.SubtractHours(CurrentDate, 12).Hour
• B. CurrentDate.AddHours(–12).Hour
• C. CurrentDate SubtractHours(12).Hour
• D. DateTime.AddHours(CurrentDate, –12).Hour

59.A developer needs to use the REFramework to automate a business process that involves
processing transactions within an Excel table. Each transaction in the table should follow the
same steps for processing and queues cannot be used as there is no Orchestrator in the
environment.

Which variable type is best suited for TransactionItem in this scenario?

• A. System.Data DataTable
• B. UiPath.Core.QueueItem
• C. System.Data.DataRow
• D. System.Data.DataRow[]

61.Which Scraping method should be used for the Get Text activity to capture hidden text from
an application?

• A. Native
• B. Text attribute
• C. Default
• D. Full text

62.Which of the following best describes the Alerts panel?

• A. A panel that displays summaries of the alerts you subscribed to, received as error
reports every ten minutes, or as daily reports.
• B. A panel that displays alerts as they occur.
• C. A panel that displays a more comprehensive list of all alerts.
• D. A panel that displays the most severe five alerts, accessible from the Alerts bell.

63.Once “Library A” has been imported as a dependency in the current project, how can the UI
Object Repository defined in “Library A” be accessed?

• A. The Object Repository cannot be passed between a Process and a Library.


• B. The Object Repository is only available in a Library.
• C. The Object Repository needs to be exported as a UI Library and imported in the
Process for it to become available.
• D. The Object Repository will automatically be available in the Process.

64.What happens when the area selection feature in the UiPath Computer Vision wizard is
used?

• A. A duplicated UI can be selected, and the copy is modified in the automation process.
• B. A portion of the application UI can be selected, which is helpful when dealing with
multiple fields bearing the same label.
• C. The selected area is automatically resized to fit all UI elements within it.
• D. The selected area is treated as a single UI element, with no further analysis of its
contents.

65.How does UiPath Integration Service benefit automation developers?

• A. By standardizing authorization and authentication, managing API connections, and


enabling faster integration into SaaS platforms.
• B. By substituting the requirement for API automation with UI automation capabilities,
delivering a more manageable and user-friendly approach, allowing users to streamline
their processes efficiently and effectively facilitating a more rapid integration process.
• C. By offering a comprehensive, unified platform dedicated solely to UI automation,
enabling seamless integration with third-party applications.
• D. By enabling developers to create custom UI elements for applications without using
APIs.

66.What are the components that define a state within a State Machine in UiPath Studio?

• A. Input Arguments, Output Arguments, and Variables.


• B. Sequence, Flowchart, and Transactional Business Process.
• C. Entry, Exit, and Transition Actions with Trigger Conditions.
• D. Activities, Connectors, and Annotations.

67.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.Concat(UserNames, “,”)
• C. String.Concat(“,”, UserNames)
• D. String.Join(UserNames, “,”)

68.Which activity can be used to transition a Background Process to Foreground?


• A. Use Foreground
• B. Activate
• C. Maximize Window
• D. Set Focus

69.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 retried only one time


• B. Transaction is not retried but remaining transactions continue processing
• C. Transaction is not retried and the process stops.
• D. Transaction is retried multiple times until processed successfully.

70.At indication time, the Strict Selector has the following functionalities available:

• A. Open in UiExplorer, Copy to clipboard, Show all matches.


• B. Accuracy, Open in UiExplorer, Copy to clipboard, Show all matches.
• C. Ignore text, Copy to clipboard, Show all matches.
• D. Refresh, Open in UiExplorer, Copy to clipboard.

71.Which of the following describes the correct hierarchy of the elements in the Object
Repository tree structure?

• A. Version, Application, Screen, UI Element.


• B. Application, Version, Screen, UI Element.
• C. Application, Screen, UI Element, Version.
• D. Screen, Application, Version, UI Element.

72.Given the following list of arguments:

and the following code:


What is the value that will be displayed in the Output Panel at the end of the sequence below:

• A. 1
• B. 2
• C. 7
• D. 9

You might also like