100% Complete Solutions 2026
What activities can you use to create a data table from unstructured data?
A. Generate Data Table
B. Build Data Table
C. Output Data Table - Correct Answer-A. Generate Data Table
What activity can you use if you want to add data to an existing .xlsx document without
overwriting existing data? (Multiple Answers)
A. Workbook Write Range
B. Excel Append Range
C. Workbook Append Range
D. Excel Write Cell - Correct Answer-B. Excel Append Range
C. Workbook Append Range
This project type is recommended for simple, linear workflows without multiple decision
nodes.
A. Flowchart
B. Sequence
C. State Machine - Correct Answer-B. Sequence
You have included a Sort Data Table activity in your workflow. The DataTable variable
is called dt_Usernames. The Input DataTable field is set to the dt_Usernames variable
and the Output DataTable field is also set to dt_Usernames.
A. display them in the Output panel
B. store them in an Excel file
C. store them in the same variable
D. store them in a .CSV file
E. store them a different variable - Correct Answer-C. store them in the same variable
What happens if you use a Write Range activity and try to write data in an .xlsx file that
does not exist?
A. It will create that file for you and write the data in it.
B. It will continue the execution without writing the data.
C. It will throw an error. - Correct Answer-A. It will create that file for you and write the
data in it.
, From an automation potential standpoint, a process in which changes are frequent, the
system environment is volatile, and multiple manual (even non-digital) actions are
required belongs to the ...
A. Semi-automation category
B. High-cost RPA category
C. None of the above
D. No RPA category - Correct Answer-D. No RPA category
Which activity would be your first choice to loop through all the rows of a data table?
A. For Each
B. While
C. For Each Row
D. Join Data Tables - Correct Answer-C. For Each Row
Can Excel related activities run on a machine that does not have the Excel application
installed?
A. Yes, for every Excel file type
B. Yes, but only for .xlsx files
C. Yes, but only for xls files
D. No, UiPath Studio requires MS Office package - Correct Answer-B. Yes, but only
for .xlsx files
Which activity can be used to read an entire sheet from an Excel file?
A. Read Cell
B. Read Range
C. Get Table Range - Correct Answer-B. Read Range
What expression would you use to instantiate a dictionary variable that pairs names
(key) with ages (value)?
A. Dictionary (Int32, String)
B. Dictionary (String, Int32)
C. New Dictionary(of Int32, String)
D. New Dictionary(of String, Int32) - Correct Answer-D. New Dictionary(of String, Int32)
We need to automate a banking process that moves the money from clients' accounts
according to certain rules. It makes payments, it calculates interest rates and, each
morning, it moves the amounts of money according to specific rules. The process is
continuous.
A. Sequence
B. Flowchart