Anda di halaman 1dari 6

Sign Out

 ›
 My Courses ›
 Level 1 - Foundation Training - revamped ›
 Play ›
 RPA Developer Foundation Training - Final Test

RPA Developer Foundation Training - Final Test


Single Choice
1) How many characters does "*" replace?
Zero or more Zero More than one
Multiple Choice
2) Which of the following statements is true regarding Lists and Arrays?
List items can be added using an Add to Collection activity. You can add any number
of elements to an array. You can iterate through a List using a For Each loop activity.
Array and List elements can be accessed by index.
Multiple Choice
3) Will a Click activity work with a Hidden browser session?
No, it will not work. Yes, if the SimulateClick property is selected. Yes, it will
work with the default configuration. Yes, if the SendWindowMessages property is
selected.
Single Choice
4) What activity can you use to read an entire sheet from an excel file?

Get Value Write CSV Read Range Read Cell


Single Choice
5) What happens if you send "123[k(enter)]" by using Type Into activity with the SimulateType property selected?
It will type "123[k(enter)]". It will type “123” and then press the Enter key. It will
type "123" without pressing the Enter key.
Multiple Choice
6) Having an app in a Citrix environment with multiple text-boxes that look the same (size/style), how can
you identify one of them to type into?

You can’t identify it if it doesn’t have something unique next to it (text/image). By


using text-box element attributes By using partial selectors By clicking relative to an
unique text/image next to the textbox
Single Choice
7) How can we make sure that an app is in a certain state in a Citrix environment?

By checking the UI element’s attributes. By making use of the WaitForReady


property. By waiting for certain UI elements to appear or disappear and making decisions
based on that.
Multiple Choice
8) Where can you see the activities that make up a workflow?
In the Workspace pane In the Activities pane In the Outline pane
Single Choice
9) How can you fine tune a selector?

Making sure you have an idx attribute Adding all parents Replacing variable
attribute parts with *
Single Choice
10) What should you use to scrape tables from a web page?

Get Text Get OCR text Data Scraping


Multiple Choice
11) Which of the following activities can you use to extract text from a hidden browser?
Extract Structured Data Get Visible Text Get Full Text Get Text
Single Choice
12) What activity can you use to get a column value from a specific row of a DataTable?

Remove Data Row Get Row Item Read Cell


Single Choice
13) What is a wildcard used for?

To replace variable values in selector attributes To select items in a list To get


text from screen
Single Choice
14) Which of the scraping methods can get you the hidden text in the element?

All the options OCR Native FullText


Multiple Choice
15) As a best practice, how should workflows use a local desktop application?
By using selectors to interact with the application. By closing the application once
it’s no longer needed. By checking if the corresponding process is running and if not,
opening the application by using the Open Application activity. By opening the
application using the Click Image activity on the application’s desktop shortcut.
Single Choice
16) How can you install and update activity packs?

Using TFS In Package Pane Using Manage Packages within Activities Pane
Single Choice
17) What should you use to make sure that the workflow continues no matter what activity fails?

Try Catch activity ContinueOnError property TimeoutMS property


Single Choice
18) What kind of workflow should you create to define business rules?

Flowchart State machine Sequence


Single Choice
19) What type of argument can you define to pass data and retrieve the modified value from an invoked
workflow?

In. Out. In/Out.


Single Choice
20) How can we test if a given address (a string variable called fullAddress) can be found on a particular street (a string variable
called streetName)?

fullAddress.Contains(streetName) streetName.Contains(fullAddress)
fullAddress.Has(streetName) streetName.Has(fullAddresss)
Multiple Choice
21) What activity allows you to customize the name of the sender when you are sending an email?
Send Exchange Mail Message Send SMTP Mail Message Send Outlook Mail
Message
Multiple Choice
22) What are the supported wildcard characters for selectors in UiPath Studio?
* ? $ &
Single Choice
23) What should you use to click in a hidden IE browser?

Click text Default click activity SimulateClick Cursor Position : Center


Multiple Choice
24) The Read PDF with OCR activity will throw an error if the following is not specified:
The Text property. The FileName property. The Password property. The
OCR Engine that is to be used.
Single Choice
25) What happens if you try to use a Write Range activity to a .xlsx file that does not exist?
It will create that file for you and write the data in it. It will continue the execution
without writing the data. It will throw an error.
Single Choice
26) What is TimeoutMS property used for?

To define the amount of time in which the robot will execute the activity To define
the amount of time during which the target of an activity must be found To make sure
that the workflow continues even if the activity fails
Single Choice
27) If the PDF activities are not listed in your Activities Panel, how can you get them?

By finding them in the Library tab. By installing them using the Manage Packages
feature. By going to the Output panel.
Single Choice
28) Can you insert a Flowchart activity in a Sequence activity?
No Yes
Multiple Choice
29) What kind of actions can be performed in the Variables panel?
Setting default values for variables Adding new variables Changing variable
types
Single Choice
30) What happens if you use the Write Range activity with the Range property set to “” to write a datatable to an excel file that
already contains data?

It will append the new data to the existing data. It will overwrite the existing data.
It will throw an error.
Multiple Choice
31) What is a sequence most suitable for?
Short and simple workflows When we first start a project, as a main workflow
Workflows that imply decision making activities Pieces of automation that can be used
in a larger project
Single Choice
32) What is an argument?

A variable type A variable An input/output parameter of the workflow


Multiple Choice
33) How should an RPA developer address runtime exceptions in the workflows?
By using Try/Catch blocks when invoking external workflow files By using
automatic recovery sequences inside the Catch blocks. By logging any exception events
Multiple Choice
34) What text extraction method can you use to get text position?
FullText OCR Shared Clipboard Native
Single Choice
35) What should you use to verify if a checkbox is selected or not?

Check activity Click activity A trigger activity Get Attribute activity


Multiple Choice
36) Which activities can be used to interact with the user?

WriteLine MessageBox InputDialog


Single Choice
37) What happens if the AddHeaders option is checked in the Read Range Activity?

The headers are added to the excel sheet An exception is thrown The first row
from the specified range is considered to be the column names
Single Choice
38) What is the most effective way to handle the click on a UI Element that is not always available?

By using an Element Exists activity and then a Click activity. By setting the
ContinueOnError property of the Click activity to True. By placing the Click activity
inside a Try/Catch block.
Multiple Choice
39) What activities can you use to send an email message?
Send SMTP Mail Message. Send IMAP Mail Message. Send Outlook Mail
Message.
Multiple Choice
40) What activities can be used to interact with applications in a Citrix environment?
Type Into Click Text Click OCR Text Click Image
Multiple Choice
41) How do you exit the selection mode?
F2 ESC F3 Right click
Single Choice
42) If you scrape some text and you know it contains only digits, how can you make the scrape better?

Make sure the background is red Use Google OCR with “Numbers Only” Use
Microsoft OCR with scale set to 3
Single Choice
43) How does UiPath recognize elements on screen?

Using screen coordinates Using the position of the UI elements Using attributes
of the UI elements and their parents
Multiple Choice
44) How can you identify a column in a DataTable?
Using the column index Using the column name Using the row index Using
the column default value
Single Choice
45) Given two Generic variables, A with value “123” and B with value 456, what would the Write Line output of A + B be?

An exception will be thrown. 579 123456 123 + 456


Page: 1 / 1
SUBMIT (TEST COMPLETED)

Anda mungkin juga menyukai