Exam Flashcards
What is the status of a queue item before it is changed to “Abandoned”?
There are several possible answers depending on the specific queue configuration. Options could include: Pending, In Progress, Reserved.
A user needs to loop over a variable number of months. Which data type is best suited to store the month names?
String Array is the most suitable data type to store a variable number of month names.
What is a characteristic of an Orchestrator Asset?
Orchestrator Assets are reusable components within a folder structure. Examples include workflows, libraries, and data tables.
What is the best practice for nested IF clauses?
Avoid deeply nested IF statements. Use alternative structures like Else If or switch statements for better readability and maintainability.
Key attributes of an automation developer?
Analytical skills, problem-solving abilities, understanding of business processes, and proficiency in UiPath Studio.
Given two lists “FranceCities” and “IndiaCities”, how can you show all city names in a message box?
Concatenate both lists using the Combine Lists activity and provide the combined list to the MessageBox input.
Which variable name respects UiPath best practices?
Descriptive and Camel Case (e.g., totalNumberOfRecords). Avoid special characters and spaces.
Filter option for iterating through Microsoft Word documents in a folder?
Use the “*.docx” filter in the “For Each File in Folder” activity.
Which UiPath product combines collaboration and automation features with AI capabilities?
UiPath StudioX** (might also be an acceptable answer depending on the exam).
Supported variable type for the output of Get Mail activities?
Data Table is the most common output type for Get Mail activities.
Where can you find a published Template Project?
UiPath Marketplace or within your organization’s Orchestrator instance (depending on sharing permissions).
Characteristic of attended automation tasks?
Requires user interaction during execution.
Selecting “Step Out” during debug mode directs the Executor to?
The next activity following the current breakpoint.
Main components of a digital business process?
Inputs, activities (tasks), outputs, and controls (monitoring and decision points).
Loading a published library into a new process?
Use the “Add” option within the “Manage Packages” window and select the library from the local folder.
Checking the format of an email address in a string variable?
Utilize Regular Expressions or dedicated string manipulation functions to validate the email format.