UiPath Certification Cheat Sheet 2026

The 30 highest-yield UiPath Certification facts, distilled from real exam questions. Print it, save it as a PDF, or study it here — free, no sign-up.

65 questions
120 min time limit
70.00% to pass
  1. Which Orchestrator entity represents a logical grouping of robots that can be assigned jobs? Folder
  2. What is the purpose of the "Get Transaction Data" state in the REFramework? To retrieve the next transaction item from the input data source
  3. Which panel in UiPath Studio shows the current value of all variables during a debugging session? Locals Panel
  4. What is the correct VB.NET expression to get the current date as a formatted string like '2026-03-22' in UiPath? DateTime.Now.ToString('yyyy-MM-dd')
  5. What does the 'Publish' action in UiPath Studio do? Packages the project as a NuGet file and sends it to Orchestrator or a local feed
  6. What does the 'Heartbeat' mechanism in UiPath Robot to Orchestrator communication indicate? The robot is alive and connected to Orchestrator
  7. Which component of the REFramework is responsible for processing each transaction item? Process Transaction state
  8. In Document Understanding, which activity extracts specific field values from a classified document? Extract Document Data
  9. In UiPath, what is the purpose of the 'For Each' activity when used with a DataTable? Iterates over each row in the DataTable
  10. How do you concatenate two strings 'Hello' and 'World' with a space in UiPath VB.NET? B and C are both correct
  11. Which activity should you use to pause a workflow execution for a specified number of milliseconds in UiPath? Delay
  12. What VB.NET expression checks if a List(Of String) variable named 'myList' contains the value 'UiPath'? myList.Contains('UiPath')
  13. Which metric is commonly used to evaluate the accuracy of a Document Understanding extraction model in UiPath AI Center? F1 Score
  14. Which of the following is a key feature of UiPath Studio? Designing and visualizing automation workflows
  15. What is a 'Machine Template' in UiPath Orchestrator? A reusable machine configuration that can be associated with multiple host machines
  16. Which UiPath feature allows automating applications where traditional selectors are not reliable, using image and OCR recognition? Computer Vision Activities
  17. Which UiPath Studio feature lets you temporarily disable an activity without deleting it? Disable Activity
  18. Which NuGet feed is used by default to manage activity packages in UiPath Studio? UiPath Official Feed
  19. What is the purpose of 'Snippets' in UiPath Studio? Pre-built reusable workflow segments that can be dragged into projects
  20. What is the purpose of the 'Throw' activity in UiPath? Intentionally raises an exception to signal an error condition
  21. Which activity would you use to repeat a set of actions a specific number of times? For Each Row
  22. Which UiPath Document Understanding classifier uses a keyword-based approach without requiring ML training? Intelligent Keyword Classifier
  23. What is the purpose of the 'Finally' block in a UiPath Try Catch activity? It always runs after Try and Catch, regardless of whether an exception occurred
  24. What does the 'Windows Compatibility' project type require compared to 'Windows Legacy' in UiPath Studio? .NET 6 or higher runtime
  25. What does a 'Queue' in UiPath Orchestrator enable? Storing transaction items for robots to process asynchronously
  26. How do you access the value in the column named 'Email' from a DataRow variable called 'row' in UiPath? row('Email').ToString
  27. Which OCR engine is provided natively by UiPath in the Document Understanding framework? UiPath Document OCR
  28. Which Orchestrator feature stores and versions all robot execution logs for auditing? Logs
  29. In UiPath Orchestrator, what is a 'Tenant'? An isolated organizational unit within an Orchestrator instance
  30. What is the purpose of the 'Highlight' activity in UiPath? To visually highlight a UI element on screen for debugging or demonstration purposes