1 )You can insert a Sequence activity in a Flowchart activity.
False True Ans
2)Which activity can you use if you want to loop through a collection of items? Assign activity For Each activity Flow Decision activity If activity Ans: 3)Which of these are workflow types available in UiPath Studio? Sequence Flowchart Activity REFramework Ans:
4) When should you use the Flowchart workflow?
When having a process with many decision blocks When modelling a process that has loops to previous states When having multiple activities executed in a fixed order Ans
Given two Generic variables, A with value “123” and B with value 456, what would the Write Line output of A + B be?
579 An exception will be thrown. 123 + 456 123456 Ans:
) What key combination allows you to automatically create a variable from an activity’s property field?
Ctrl + P
Ctrl + A
Ctrl + K
Ctrl + N Ans Ctrl+K
Which activity can be used to modify the value of an existing cell in a DataTable?
Add Data Column activity
Modify Cell activity
Assign activity
Add Data Row activity Ans: Assign activity
3) Which activities can be used to iterate through an Array?
Flow Decision
For Each Row
For Each
While
Ans: For Each
4) 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)?
streetName.Contains(fullAddress)
fullAddress.Contains(streetName)
streetName.Has(fullAddresss)
fullAddress.Has(streetName)
Ans: fullAddress.Contains(streetName)
How can you identify a column in a data table?(Select all that apply.)
Using the row index
Using the column index
Using the row name
Using the column name Ans: Using the column index Using the column name
If the dtNewHires datatable has 4 columns, in this order : [ID, Name, Age, Sex] and 2 rows: [1, Daniel, 38, M] ; [2, Andra, 24, F], what is the result of the expression dtNewHires.Rows(0)(1)?
Daniel 2 1 Andra Ans:
1) Which of the following statements are true regarding the Output DataTable activity?
Returns the data contained in a DataTable as a string in a csv format Writes a DataTable to an Excel file Returns a DataTable object Writes a DataTable to a csv file
Ans Which activity can be used to modify the value of an existing cell in a DataTable?
Add Data Column activity Modify Cell activity Add Data Row activity
Assign activity
Ans: Which .Net method of the datatable object can be used to filter a table by a condition?
Clone ToString Select Filter Ans
4) If the dtNewHires datatable has 4 columns, in this order : [ID, Name, Age, Sex] and 2 rows: [1, Daniel, 38, M] ; [2, Andra, 24, F], what is the result of the expression dtNewHires.Rows(0)(1)?
2 Daniel Andra 1 Ans:
5)Which activity can you use to get the value from a certain cell, from a specific data table row? Remove Data Row Write Cell Read Cell Get Row Item
Ans:
1) 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)?
streetName.Has(fullAddresss)
streetName.Contains(fullAddress) fullAddress.Has(streetName) fullAddress.Contains(streetName) Ans: Multiple Choice
2) If currentRow represents a row from a DataTable with two columns in this order: Name and Age, which expressions can be used to obtain the value from the column Age?(Select all that apply.)
currentRow("Age") currentRow(1) currentRow.Age currentRow(2) Ans: Single choice
3) How can the index integer variable be displayed inside a Message Box activity?
“Current index is: $index” “Current index is: “ + index.ToString “Current index is: “ + index “Current index is: + index.ToString” Ans: Single choice
4) Which activity can be used to modify the value of an existing cell in a DataTable?
Modify Cell activity Assign activity Add Data Column activity
Add Data Row activity Ans: Multiple Choice
5) Which of the following statements are true regarding Lists and Arrays?
You can add maximum 100 elements to an array. You can iterate through a List using a For Each loop activity. List items can be added using an Add to Collection activity. Array and List elements can be accessed by index. Ans:
2) Which activities can be used to iterate through an Array?
While
Flow Decision
For Each
For Each Row Ans : For Each
) Which variable type can you use to efficiently store the current time inside your workflows?
Integer
DateTime
Array<String>
String Ans: DateTime
Which activity can be used to loop through each row from a DataTable?
For Each Row
Build DataTable
If
Flow Decision
Ans: For Each Row
Which of the following data types are included in the Collections category?
Int32
Array
Dictionary
List
Ans: Array Dictionary List
Recording
1) Which container will Basic Recording generate?
No container
Attach Browser
Attach Window
Excel Application Scope
Score: 10 ans No container Single choice
2) What recording profiles are available in UiPath Studio?
Automatic recording and Step by Step recording
Click, Check, Type Into and Select Item
Basic, Desktop, Web, Citrix
Score: 10 Basic, Desktop, Web, Citrix Single choice
3) Which container will Web Recording generate?
No container
Excel Application Scope
Attach Browser
Attach Window
Score: 10 Attach Browser Single choice
4) How do you stop the recording?
Escape
F12
F4 and Delete
Escape and Double click
Ans:Escape
Score: 10 Single choice
5) How can you record the start of a Web application?
Use the open Application activity
Hit Record - Basic - Start App - select browser
Hit Record - Web - Open Browser - select browser
Ans: Hit Record - Web - Open Browser - select browser _____________________________________________________________________________
1) Which is the best option for scraping tables from a web page?
Get OCR Text
Get Visible Text
Data scraping wizard
Score: 10 ans:Data scraping wizard Single choice
2) Which of the text extraction methods can return the hidden text from a UI element?
Any of the options
OCR
Native
FullText
Score: 10 Ans: FullText Multiple Choice
3) The downsides of using the Default input method are:
The condition that the application must be active.
Low speed.
The condition that the application must be running in background.
Score: 0 ans: Low speed. Single choice
4) How can you extract white text written on blue background in Citrix?
By using the Microsoft OCR engine invert property
By using FullText method
By using Get Text
By using the Native Method
Score: 10 ans: By using the Microsoft OCR engine invert property Multiple Choice
5) Which text extraction method can you use to get text position? (Select all that apply.)
FullText
Native
OCR
Shared Clipboard
Ans: Native OCR