00:00

QUESTION 11

When using a dynamic selector which data type is supported?

Correct Answer: C
When using a dynamic selector, the data type that is supported is String. A dynamic selector is a selector that uses a variable or an argument as a property for the attribute of the target element. This allows the selector to easily identify the target element based on the value of the variable or argument, and not an exact string, which might change depending on the interactions inside the automation project1. The variable or argument that is used in the dynamic selector must be of type String, as the attribute values are always strings2. For example, a dynamic selector can use a variable named MenuOption to click
on different menu items in an application, such as File, Edit, or Format. The variable MenuOption must be a String variable, and its value can be changed at runtime to interact with different elements. A dynamic selector has the following format, where { {Value}} is the name of the variable or argument that holds the property of the element you want to interact with1:
Dynamic Selector Format <tag attribute = { {Value}} />
References: Dynamic Selectors and How many types of selectors are in UiPath? from UiPath documentation and forum.

QUESTION 12

Where can you find a list of all the activities that support the Windows compatibility?

Correct Answer: C
The Activities Guide is a comprehensive documentation of all the official UiPath activity
packages that are available on the Official feed. The Activities Guide provides detailed information about each activity, such as the description, properties, examples, and compatibility. The compatibility section indicates which target frameworks are supported by the activity, such as Windows, Windows-Legacy, or Cross-platform. By browsing the Activities Guide, you can find a list of all the activities that support the Windows compatibility, as well as the minimum version required for each activity package. References:
✑ Activities Guide - UiPath Documentation Portal
✑ Deprecation of the Windows-Legacy Compatibility - UiPath Studio

QUESTION 13

A developer wants to create a process which runs in the background and uses Excel activities Which property of the Excel Application Scope activity must be configured for the process to run in the background?

Correct Answer: B
The Visible property of the Excel Application Scope activity determines whether the Excel file is opened in the foreground or in the background. If the Visible property is set to True (default value), the Excel file is opened and displayed on the screen. If the Visible property is set to False, the Excel file is opened and processed in the background, without showing the user interface. This can improve the performance and speed of the automation, as well as avoid any interference with the user’s work. Therefore, to create a process that runs in the background and uses Excel activities, the Visible property of the Excel Application Scope activity must be configured to False. References: Excel Application Scope from UiPath documentation.

QUESTION 14

What advantages do pre-built connectors in UiPath Integration Service offer?

Correct Answer: B
Pre-built connectors in UiPath Integration Service offer the advantage of simplifying the integration process for any automation that uses common applications such as Salesforce, Slack, Microsoft Office 365, SAP®, ServiceNow, and Google G Suite1. They also enable faster deployment and integration across all product solutions within the UiPath Platform2. References:
✑ New UiPath Integration Service blog post, Pre-built connectors deliver speed and
time-to-value section
✑ Integration Service - Connectors documentation, Introduction section
✑ Question Answering Results from web search results, New UiPath Integration Service snippet

QUESTION 15

Based on best practice, which set of features are used before debugging a workflow in UiPath Studio?

Correct Answer: B
Based on best practice, the set of features that are used before debugging a workflow in
UiPath Studio are Analyze Project and Validate File. Analyze Project is a feature that allows the developer to run the Workflow Analyzer on the entire project or a specific workflow file. The Workflow Analyzer checks the project or the file for potential errors, performance issues, best practices violations, and compliance risks, and generates a report with the analysis results and recommendations1. Validate File is a feature that allows the developer to check the current workflow file for any syntax or semantic errors, such as missing or invalid activities, arguments, variables, or expressions. The Validate File feature also displays the error list and the location of the errors in the workflow file2. By using these features before debugging, the developer can ensure that the workflow is free of any errors or issues that might affect the execution or the quality of the automation. References: Analyze Project and Validate File from UiPath documentation.