
Q31
Q31 What is the primary use of Control Flow in UiPath?
To manage and direct the execution of activities in a workflow
To store and retrieve variables
To handle errors in automation
To extract data from structured documents
Q32
Q32 Which activity is used for decision-making in UiPath?
If
For Each
While
Assign
Q33
Q33 What is the purpose of a While loop in UiPath?
To execute a set of activities until a condition becomes False
To execute a loop for a fixed number of times
To execute activities without any condition
To store multiple values
Q34
Q34 Which activity is best suited for iterating over an array or collection?
If
Switch
For Each
Do While
Q35
Q35 What is the key difference between Do While and While loops in UiPath?
While checks the condition first, Do While checks after execution
They both execute before checking the condition
Do While loops are only used for error handling
While loops cannot contain If conditions
Q36
Q36 In UiPath, what is the purpose of the Switch activity?
To execute one of multiple workflows
To evaluate a single expression and execute corresponding cases
To handle exceptions in automation
To restart the UiPath Robot
Q37
Q37 How do you define a basic For Each loop in UiPath?
For Each item In Collection
While (item in Collection)
Do Until (item exists)
Switch (item in Collection)
Q38
Q38 What is the correct syntax for an If condition in UiPath?
If condition Then { }
If (condition) {}
If (condition) Then {}
If condition {}
Q39
Q39 Which expression correctly uses a Do While loop in UiPath?
Do While count < 5 {}
While count < 5 Do {}
Do { } While count < 5
While count < 5 { }
Q40
Q40 A For Each loop is throwing an error while iterating over an array. What should be checked first?
The UiPath version
The loop index variable
The data type of the collection
The internet connection
Q41
Q41 A Switch activity is not executing the expected case. What could be the reason?
The default case is missing
The Switch activity is disabled
The expression in the Switch is incorrect
Switch activities do not support string values
Q42
Q42 A While loop is running infinitely. What is the most likely cause?
The loop condition is always True
The loop is missing a Break statement
While loops always run infinitely
The project needs to be restarted
Q43
Q43 What is the primary purpose of selectors in UiPath?
To automate UI interactions by identifying UI elements uniquely
To manage workflow transitions
To store and retrieve variables
To improve debugging processes
Q44
Q44 Which of the following is a key advantage of using selectors?
They ensure stability in UI automation
They remove the need for workflow logic
They make workflows run faster
They are required only for API calls
Q45
Q45 Which tool in UiPath is used to inspect and modify selectors?
Orchestrator
UiExplorer
Output Panel
Project Panel
Q46
Q46 What is the function of a wildcard in UiPath selectors?
To make selectors more dynamic by allowing partial matches
To force selectors to be case-sensitive
To remove the need for UI interaction
To permanently disable a selector
Q47
Q47 Which of the following is an example of a wildcard selector?
<html title='UiPath - *' />
<html title='UiPath - Main' />
<html title='UiPath - Login' />
<html title='UiPath - Home' />
Q48
Q48 How can fuzzy selectors improve UI automation reliability?
They allow selectors to match elements with slight variations
They remove the need for error handling
They automatically replace incorrect selectors
They ensure selectors never change
Q49
Q49 Which UiPath activity is used to interact with buttons, text fields, and checkboxes in UI automation?
Get Text
Click
Assign
Write Line
Q50
Q50 What is the correct syntax to use a wildcard for dynamic elements in UiPath selectors?
<ctrl name='File-*' />
<ctrl name='File-2023' />
<ctrl name='File' />
<ctrl name='File%' />
Q51
Q51 Given an unstable selector, which approach can improve reliability?
Use wildcards, fuzzy selectors, or anchor elements
Use only full exact selectors
Modify selectors randomly
Avoid using selectors
Q52
Q52 A Click activity is failing even though the selector seems correct. What should be checked first?
The element's visibility and interactability
The selector file location
The browser version
The UiPath Studio license
Q53
Q53 A dynamic web page is causing selector failures. What is the best troubleshooting step?
Use wildcards or anchor-based selectors
Disable selector validation
Increase the robot speed
Manually change all selectors in every execution
Q54
Q54 A UiPath automation bot fails intermittently on UI clicks. What could be a potential cause?
The selector does not uniquely identify the element
The robot is running too fast
UiPath does not support UI automation
The automation is too slow
Q55
Q55 What is the primary purpose of Data Scraping in UiPath?
To extract structured data from applications or web pages
To delete data from databases
To format Excel sheets
To perform image-based automation
Q56
Q56 Which UiPath feature is most commonly used for web scraping?
UI Automation
Data Scraping Wizard
Screen Scraping
Regex Matching
Q57
Q57 What type of data is best suited for Data Scraping in UiPath?
Unstructured text
Handwritten notes
Tables and structured lists
Random images
Q58
Q58 How does Screen Scraping differ from Data Scraping?
Screen Scraping extracts images and text, while Data Scraping extracts structured data
They both extract only images
Data Scraping is used for offline applications only
Screen Scraping is faster than Data Scraping
Q59
Q59 What happens if the extracted web data spans multiple pages in UiPath’s Data Scraping?
UiPath automatically stops
UiPath provides an option to extract data across multiple pages
Data cannot be scraped from multiple pages
A new automation script is needed for each page
Q60
Q60 Which of the following is NOT a limitation of Data Scraping?
Works only with structured data
Cannot extract handwritten text
Cannot scrape images directly
Can extract real-time data updates