QUESTIONS AND CORRECT ANSWERS
Which of the following three (3) fields are mandatory when creating a variable in the variable
panel? - CORRECT ANSWER Name
Variable type
Scope
Which of the following is a VB.NET data type that measures the duration between two
variables of the type DateTime. - CORRECT ANSWER TimeSpan
Which of the following types of collection is the best option when you have to extract the
unique ID's of employees from a database? - CORRECT ANSWER Arrays are the best
option when you have to extract the unique IDs of employees from a database.
Which of the following are the three ways to create a new variable in UiPath Studio? -
CORRECT ANSWER Press Ctrl+K in an activity input field that requires a variable.
Select the Create new Variable option in the Variables panel.
Press Ctrl+K in an input field that requires a variable in the Properties panel.
By performing right-click in the input field and selecting the create variable option.
Match the following UiPath Platform components with the descriptions provided: -
CORRECT ANSWER UiPath Studio - Designing automation workflows.
UiPath Orchestrator - Managing and monitoring the execution of automation.
UiPath Robot - Executing automation workflows.
UiPath Automation Hub - Discovering automation opportunities and managing their journey
from discovery to implementation.
consists of a conditional expression and a collection of cases, with a corresponding set of
activities? - CORRECT ANSWER Switch
,How does the Parallel Activity perform its execution asynchronously? - CORRECT
ANSWER From top to bottom, left to right
Which one of the following activities enables your project to take multiple different courses
of action, depending on whether a series of specified conditions are met? - CORRECT
ANSWER Else If activity lets you add multiple conditions using the drop-down
options Else If and Else.
What is the importance of control flow? - CORRECT ANSWER
UI automation is the process of automating application user interfaces by simulating human
input and output actions through specific UI activities.
The first step in automating UIs is understanding the logical sequence of steps that a human
user would take. The second step consists in translating these steps into UiPath Studio
activities and configuring them.
The complexity of the UI or of the application is irrelevant. All desktop applications can be
automated by using universal or application tailored activities. - CORRECT
ANSWER UI AUTOMATION
output methods - CORRECT ANSWER 1.The FullText method is the default method
and good enough in most cases. It is the fastest, it can extract hidden text, it has 100%
accuracy, and can work in the background.
2.The Native method is compatible with applications that use Graphics Design Interface
(GDI), the Microsoft API used for representing graphical objects. It doesn't extract hidden
text and it cannot work in the background; and just like FullText, it doesn't support virtual
environments
3.OCR (or Optical Character Recognition) is the only output method that works with virtual
environments and with "reading" text from images. Its technology relies on recognizing each
character and its position. On the other hand, it cannot work in the background, it cannot
extract hidden text, and its speed is by far the lowest.
Which targeting methods does the Unified targeting method use to identify the Required UI
Element? - CORRECT ANSWER Selector
, Fuzzy Selector
Image
You have just created a new project. How would you set the classic experience for this
specific project? - CORRECT ANSWER Project Settings > General
Which of the below options are true for 'SendWindowsMessages'?
Output method
Activity Property
Input method
Actvity - CORRECT ANSWER Activity Property
Input method
Click activity properties - CORRECT ANSWER AlterIfDisabled: if enabled, the click
action is executed even if the specified UI element is disabled
KeyModifiers: enables users to add a key modifier so that the specific key is pressed while
performing the action. The following options are available: Alt, Ctrl, Shift, Win.
SendWindowMessages: if enabled, the click action is executed by sending a specific message
to the target application. This input method can work in the background
SimulateClick: if enabled, it simulates the click action by using the technology of the target
application. This input method can work in the background.
type into activity properties - CORRECT ANSWER Activate: if enabled, the specified
UI element is brought to foreground and activated before the text is written. If this is not
enabled, then the activity will type into the current active window. This property is enabled
by default.
The actions which aren't compatible with working with background mode are: - CORRECT
ANSWER Any activities using image as targeting method.
Native text automation.
All keyboard shortcuts.
Minimizing opened applications.