Skip to content
rpazone
  • Home
  • Courses
  • Jobs
  • UipathExpand
    • Basics
    • Excel Automation
    • Interview Preparation
    • REFramework
    • String Manipulation
  • Power Automate
  • UiPath Quizzes
Log In
rpazone
Time Left:
00
:
30
:
00
HRS
 
MIN
 
SEC
Time Spent: %%TIMESPENT%%
Time expired. Sorry, you will not be able to continue with this quiz. Please opt-in to see the result.
SEC
HRS
MIN
SEC
SEC
Total Time
[SQBTimeSpent]
0
HRS
0
MIN
0
SEC
UiPath Quiz on String Manipulation, Collections & UI Automation
1
Insert Video
Test your UiPath expertise with this quiz on string manipulation, regular expressions, collection handling, and UI automation skills
Start Test
1%
1) Choose four typical uses of RegEx.
1
Insert Video
Note: You can select multiple answers as this is multiple choice question
A) i) Debugging ii) Input Validation iii) Data Scrapping iv) String Parsing
A text area will be displayed in the frontend when users select this answer.
Add RecommendationEdit TagsView All Assigned Tags
B) i) String Manipulation ii) Input Validation iii) Data Scrapping iv) String Parsing
A text area will be displayed in the frontend when users select this answer.
Add RecommendationEdit TagsView All Assigned Tags
Continue
2) Which of the following string modifications can be performed using the Modify Text activity?
1
Insert Video
Enter any additional information about the quiz
A) i) Trim ii) Find and replace iii) Combine text iv) Text to Upper/Lower
A text area will be displayed in the frontend when users select this answer.
Add RecommendationEdit TagsView All Assigned Tags
B) i) Find and replace ii) Combine text iii) Text to Upper/Lower iv) Split
A text area will be displayed in the frontend when users select this answer.
Add RecommendationEdit TagsView All Assigned Tags
Continue
3) What will the following expression return? 

String.Format("{1} is {0}", "home", "John", "far away", 0, 1)
1
Insert Video
Enter any additional information about the quiz
A) "Home is far away"
A text area will be displayed in the frontend when users select this answer.
Add RecommendationEdit TagsView All Assigned Tags
B) "John is home"
A text area will be displayed in the frontend when users select this answer.
Add RecommendationEdit TagsView All Assigned Tags
C) "John in far away" 
A text area will be displayed in the frontend when users select this answer.
Add RecommendationEdit TagsView All Assigned Tags
D) "1 is 0"
A text area will be displayed in the frontend when users select this answer.
Add RecommendationEdit TagsView All Assigned Tags
Continue
4) Which out of the four options is the correct way to concatenate a string variable (Username) with a string (" is online")? 
1
Insert Video
Enter any additional information about the quiz
A) UserName + is online
A text area will be displayed in the frontend when users select this answer.
Add RecommendationEdit TagsView All Assigned Tags
B) "UserName" + " is online"
A text area will be displayed in the frontend when users select this answer.
Add RecommendationEdit TagsView All Assigned Tags
C) UserName + " is online"
A text area will be displayed in the frontend when users select this answer.
Add RecommendationEdit TagsView All Assigned Tags
Continue
5) Consider the list of strings ListOfContinents = {"Africa", "Antarctica", "Asia", "Australia", "Europe", "North America", "South America"}. 

What value will the expression ListOfContinents(2) return?
1
Insert Video

A) Asia
A text area will be displayed in the frontend when users select this answer.
Add RecommendationEdit TagsView All Assigned Tags
B) Antarctica
A text area will be displayed in the frontend when users select this answer.
Add RecommendationEdit TagsView All Assigned Tags
C) Australia
A text area will be displayed in the frontend when users select this answer.
Add RecommendationEdit TagsView All Assigned Tags
D) Europe
A text area will be displayed in the frontend when users select this answer.
Add RecommendationEdit TagsView All Assigned Tags
Continue
6) What is the correct expression for initializing a dictionary that has 'Int32' as key type and 'List of String' as value type?
1
Insert Video

A) New dictionary (of String, List (of String))
A text area will be displayed in the frontend when users select this answer.
Add RecommendationEdit TagsView All Assigned Tags
B) New dictionary (of Int32, new List (of String))
A text area will be displayed in the frontend when users select this answer.
Add RecommendationEdit TagsView All Assigned Tags
C) New dictionary (of Int32), new List (of String)
A text area will be displayed in the frontend when users select this answer.
Add RecommendationEdit TagsView All Assigned Tags
D) New dictionary (of Int32, List (of String))
A text area will be displayed in the frontend when users select this answer.
Add RecommendationEdit TagsView All Assigned Tags
Continue
7) What is the best collection data type to store several cake recipes (names and ingredients)?
1
Insert Video
Note: You can select multiple answers as this is multiple choice question
A) i) String ii) Array
A text area will be displayed in the frontend when users select this answer.
Add RecommendationEdit TagsView All Assigned Tags
B) i) Array ii) List
A text area will be displayed in the frontend when users select this answer.
Add RecommendationEdit TagsView All Assigned Tags
C) i) List ii) Dictionary
A text area will be displayed in the frontend when users select this answer.
Add RecommendationEdit TagsView All Assigned Tags
Continue
8) Which collection type does not have a fixed number of elements?
1
Insert Video
Note: You can select multiple answers as this is multiple choice question
A) List
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
B) Int32
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
C) String
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
D) Array
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
Continue
9) What expression would you use to initialize a dictionary object that pairs names (key) with ages (value)?
1
Insert Video
Note: You can select multiple answers as this is multiple choice question
A) New Dictionary(of String, Int32)
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
B) Dictionary (String, Int32)
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
C) Dictionary (Int32, String)
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
D) New Dictionary(of Int32, String)
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
Continue
10) Which method checks if an item with a given key exists in the dictionary variable and returns a Boolean result and the value if found?
1
Insert Video
Note: You can select multiple answers as this is multiple choice question
A) VarName.ContainsKey(Key)
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
B) VarName.TryGetValue(Key, Value)
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
C) VarName.Count
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
D) VarName.Item(Key)
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
Continue
11) How can we initialize the following variable type:
List<IList<String>>

1
Insert Video
Note: You can select multiple answers as this is multiple choice question
A) new IList (of String))
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
B) new List (of IList(of String))
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
C) new List (of String))
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
D) new IList (of IList(of String))
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
Continue
12) What does the 'String.Join' method allows us to do?
1
Insert Video
Note: You can select multiple answers as this is multiple choice question
A) Add a new item to a List of String.
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
B) Print a list of strings.
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
C) Initialize a list of string type elements.
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
D) Merge two collections.
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
Continue
13) Consider a dictionary variable (BirthDates), of type String, String, that contains name and birth date pairs. They key values are the names. You want to add a new key / value pair using an 'Assign' activity (John Doe, Apr/20/1980). 


What expressions would you enter in the 'To' and 'Value' fields of the 'Assign' activity?

1
Insert Video
Note: You can select multiple answers as this is multiple choice question
A) To: "John Doe" Value: "Birth Dates"
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
B) To: BirthDates("Apr/20/1980") Value: "John Doe"
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
C) To: BirthDates(John Doe) Value: "Apr/20/1980"
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
D) To: BirthDates("John Doe") Value: "Apr/20/1980"
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
Continue
14) Which of the following methods can be used to populate a list of strings type variable with the values John, Paul, George, and Ringo?
1
Insert Video
Note: You can select multiple answers as this is multiple choice question
A) i) Set the Default value in the Variables panel to {"John", "Paul", "George", "Ringo"} ii) Initialize the variable with New List(of String) and use Build Collection activity to populate the list.
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
B) i) Set the Default value in the Variables panel to New List(of String) from {"John", "Paul", "George", "Ringo"} ii) Initialize the variable with New List(of String) and use Build Collection activity to populate the list.
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
Continue
15) In the context of List manipulation, what actions are possible?
1
Insert Video
Note: You can select multiple answers as this is multiple choice question
A) Looping through the items.
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
B) Adding and removing items.
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
C) Merging lists.
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
D) Extracting items and converting them to other data types.
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
E) Sorting the objects.
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
F) Searching for an element.
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
G) All the above
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
Continue
16) What type must we select to declare a dictionary variable?
1
Insert Video
Note: You can select multiple answers as this is multiple choice question
A) System.Collections.Generic.Dictionary as type.
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
B) System.Generic as type.
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
C) System.Dictionary as type.
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
D) System.Collections as type.
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
Continue
17) Which property of the Check App State activity in UiPath specifies the maximum amount of time to wait for the application state to change?
1
Insert Video
Note: You can select multiple answers as this is multiple choice question
A) WaitTime
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
B) Delay
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
C) Timeout
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
D) RetryInterval
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
Continue
18) State True or False : the Pick activity in UiPath allows you to monitor multiple input sources simultaneously and execute the appropriate branch of activities based on the first available input.
1
Insert Video
Note: You can select multiple answers as this is multiple choice question
A) False
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
B) True
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
Continue
19) State True or False : Check App State activity can be used as a condition for the Retry Scope activity
1
Insert Video
Note: You can select multiple answers as this is multiple choice question
A) True
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
B) False
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
Continue
19) What are the main components of the Pick Branch activity in UiPath?
1
Insert Video
Note: You can select multiple answers as this is multiple choice question
A) Assign activity
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
B) Invoke workflow activity
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
C) Conditions and Loops
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
D) Actions and Loops
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
E) Triggers and Conditions
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
F) Triggers and Actions
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
Continue
19) The Verify Execution property is available for which three of the following activities in UiPath?
1
Insert Video
Note: You can select multiple answers as this is multiple choice question
A) i) Assign activity ii) Hover activity iii) Click activity
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
B) i) Select Item Activity ii) Hover activity iii) Click activity
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
C) i) Type Into activity ii) Hover activity iii) Click activity
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
Continue
19) Which property of the Parallel activity in UiPath allows you to specify a Visual Basic expression that's evaluated after each branch completes?
1
Insert Video
Note: You can select multiple answers as this is multiple choice question
A) Condition
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
B) Invoke workflow activity
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
C) Assign activity
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
D) Branches
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
E) ChildActivities
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
F) IdleTimeout
A text area will be displayed in the frontend when users select this answer.
Add RecommendationAdd TagsView All Assigned Tags
Continue
%%QUESTIONANSWERS%%
Skip Opt-in
Insert Video
Almost there...
Where can we email you the results? Please enter details below.
Send Results
You can unsubscribe at any time.
[CATEGORY_TOTAL_NUMBER]

[CategoryRank columns="1" order="lowtohigh" high="green" medium="yellow" low="red" high_range="80-100" medium_range="50-80" low_range="0-50" limitto="5"]

1
Insert Video
Congratulations on completing the UiPath mock test! This assessment was designed to give you a snapshot of your proficiency in key areas of UiPath, including the basics of RPA, workflow and activities, and advanced concept.

By taking this test, you've gained insight into your strengths and identified areas where you might want to focus further study.

Feedback: "Your score reflects your current level of understanding. A strong score indicates readiness for advanced projects, while a lower score highlights opportunities for further learning.

  • 1 Column
  • 2 Columns
  • 3 Columns
  • 4 Columns
  • 5 Columns
  • 6 Columns
Product Title
Buy Now
Product Title
Buy Now
Product Title
Buy Now
Product Title
Buy Now
Product Title
Buy Now
Product Title
Buy Now
Product Title
Buy Now
Check Our Advanced UiPath Training
%%CATEGORY_TOTAL_PERCENT%%
%%CATEGORY_TOTAL_NUMBER%%
[CATEGORY_TOTAL_PERCENT]
[CATEGORY_ONLY_PERCENT]
[CATEGORY_TOTAL_NUMBER]
Retake

YOUR TOTAL POINTS
0

  • About us
  • Contacts
  • Privacy Policy
  • Terms & Conditions
  • Courses

© 2025 rpazone This website is designed By webtechdigitals.

Contact Address

QUBITBOTS AI TECHNOLOGIES PRIVATE LIMITED

15-31-S2/MTC/608,6Th floor,Manjeera corporate,KPHP, Kukatpally,
Hyderabad,
Telangana 500072

QUBITBOTS AI TECHNOLOGIES PRIVATE LIMITED - All Rights Reserved

  • Home
  • Courses
  • Jobs
  • Uipath
    • Basics
    • Excel Automation
    • Interview Preparation
    • REFramework
    • String Manipulation
  • Power Automate
  • UiPath Quizzes
Search