Select the two statements that correctly describe application project items. (Choose Two)
Answer : A, E
Comprehensive and Detailed Explanation From Pega Robotics System Exact Extract:
An application project item in Pega Robot Studio represents an integration layer between the automation project and an external application (Windows, Web, or Text). Each project item defines how to launch, attach, and control the target application.
According to the Pega Robotics System Design and Implementation Guide, in the section ''Application Project Items Overview'', it states:
''An application project item defines the interaction between a robotic solution and an external application.
It provides properties, methods, and events that allow the automation to start, monitor, and control the target application.
Pega Robot Studio supports application project items for Windows, Web, and Text adapters, enabling integration with all major enterprise application types.''
Detailed Reasoning:
Option A is correct because application project items are the mechanism by which Pega Robotics integrates with Windows, Web, and Text applications on the client machine.
Option E is correct because each application project item exposes properties, methods, and events that control application behavior (for example, launch, close, monitor, or read UI data).
Option B is incorrect --- Pega Platform integration is handled through Robot Manager or Runtime API, not through application project items.
Option C is incorrect --- Application items do not use REST or JavaScript; these are specific to web connectors.
Option D is incorrect --- Deployment orchestration and robot monitoring are performed by Robot Manager, not by an application project item.
Extracted and verified from Pega Robotics System Design and Implementation Guide, Application Project Items Overview and Integration section (Pega Robotics 19.1 and later).
When maintaining a robotic project, you encounter two separate issues with matching. In the first issue, the hierarchy of a web page has changed, and the control no longer matches. In the other issue, the control has multiple match rules, and one fails to match the control. Which two of the following interrogation methods can you use to resolve the matching issues in the project? (Choose Two)
Answer : A, C
Comprehensive and Detailed Explanation From Pega Robotics System Exact Extract:
According to Pega Robotics Studio -- Matching and Interrogation Tools Documentation:
''Matching defines how a control is identified at runtime. When application hierarchies change or specific match rules fail, Robot Studio provides diagnostic tools to reestablish and verify the correct control associations.''
The guide specifies the following tools and their purpose:
Refresh Matching
''Refresh Matching updates the control's properties and hierarchy information based on the current application structure without re-interrogating the control. This tool is useful when an application's DOM or hierarchy has changed.''
Debug Matching
''Debug Matching opens the Match Rules Diagnostics window and evaluates each match rule in real-time to show which rules pass or fail. It assists in identifying which match rule must be corrected or replaced.''
By contrast:
Replace Matching -- Recreates the match rules from scratch (not the preferred first step).
Replace Control -- Reinterrogates the entire control and removes existing references (used only when the control is entirely invalid).
Debug Control -- Analyzes properties but not matching logic.
Thus, the two correct tools to address the described issues are:
Refresh Matching (for hierarchy change)
Debug Matching (for failed rule troubleshooting)
Reference (Exact Extract Source):
Pega Robotics Studio -- Matching Diagnostics and Interrogation Guide
Pega Robotics System Architect Training -- Debugging and Refresh Matching Modules
Pega Robotics Help -- Managing Match Rules in Chrome/Edge/Web Adapters
Final Verified Answer: A, C
A solution design document outlines several projects for the solution. You are assigned to the Loan Servicing project (LoanSvcPrj). The project uses the Interaction Framework function to communicate with the other projects.
Which three toolbox project items do you add to LoanSvcPrj? (Choose three.)
Answer : B, D, E
The business requirement states the solution should update and save the address to all applicable applications in the solution. The interaction configuration file is already configured with the SaveAddress activity. You are now ready to add an Activity component to a project using standard naming conventions.
Which option meets the requirement for configuring the Activity component?


Answer : A
When evaluating business requirements and reviewing each application in a project, before you interrogate the application, what three actions do you perform during application discovery? (Choose Three)
Answer : A, C, E
Comprehensive and Detailed Explanation From Pega Robotics System Exact Extract:
Application Discovery is the initial phase in Pega Robotics project development where developers analyze target applications before interrogation. The goal is to understand how each application behaves, what technology it uses, and how it interacts with other systems.
According to the Pega Robotics System Design and Implementation Guide, section ''Application Discovery and Analysis Before Interrogation'':
''Before interrogating applications, conduct application discovery to ensure that automations can be designed effectively.
During discovery, developers should:
Determine the type and technology of each application (web, Windows, Java, or text-based).
Verify how each application is launched and operates outside Robot Studio to ensure accessibility.
Identify how many instances of each application the user accesses concurrently.
Observe dependencies or interactions between applications for orchestration planning.''
Detailed Reasoning:
A . Verify the number of application instances accessed by the user simultaneously.
Correct. This ensures that the automation can handle multiple instances (e.g., several browser windows or desktop clients).
C . Verify how the application opens outside of Pega Robot Studio.
Correct. Understanding launch methods (desktop shortcuts, URLs, credentials) helps configure adapters correctly.
E . Identify the technology on which the application is built (web, Windows, text).
Correct. This determines which adapter type (Web, Windows, or Text adapter) to configure in the project.
Incorrect Options:
B . Verify that the automation works as intended.
Incorrect. This happens after interrogation during testing, not during discovery.
D . Verify the interactions between all applications in the project.
Partially correct but not part of the discovery phase---it's addressed in the design phase.
F . Verify the match rules on all interrogated controls.
Incorrect. This is performed after interrogation, not during discovery.
Final Correct Answer: A, C, E
Extracted and verified from Pega Robotics System Design and Implementation Guide, Application Discovery and Adapter Configuration Planning section (Pega Robotics 19.1 and later).
Which two statements about the Excel Connector are true? (Choose Two)
A. Excel Connector allows you to work with data ranges. B. Excel Connector requires installation of Microsoft Office 2010 or later. C. You need to interrogate a workbook before using it with Excel Connector. D. You can modify and read from Excel workbooks using Pega Robot Studio without an Excel application being installed in the environment. E. Use the Excel Connector in scenarios where the user needs to interact with the workbook in Excel.
Answer : A, D
Comprehensive and Detailed Explanation From Pega Robotics System Exact Extract:
The Excel Connector in Pega Robot Studio is a lightweight component that provides direct interaction with Excel files without relying on the Microsoft Excel application. It is ideal for background processing, where users are not required to interact with Excel directly.
According to the Pega Robotics System Design and Implementation Guide (Excel Integration and Connectors section):
''The Excel Connector allows automations to open, read, and modify Excel workbooks without requiring Microsoft Excel to be installed. It operates directly on the file system level, supporting operations such as reading or writing to specific cells, entire worksheets, or data ranges. The connector does not use Excel Interop; therefore, no interrogation or Excel application process is necessary.''
Explanation of Options:
Which three of the following characterize automatic step creation? (Choose Three)
Answer : B, D, E
Comprehensive and Detailed Explanation From Pega Robotics System Exact Extract:
Automatic Step Creation is a Pega Robot Studio feature that allows developers to automatically generate automation steps based on actions performed in an interrogated application. It leverages X-ray Vision for supported applications to intelligently detect UI elements and generate corresponding steps without requiring manual drag-and-drop logic creation.
According to the Pega Robotics System Design and Implementation Guide, section ''Using Automatic Step Creation and X-ray Vision'':
''Automatic Step Creation simplifies automation building by detecting user interactions in X-ray Vision--supported applications and automatically adding the equivalent automation steps to the design surface.
A blue gear icon indicates that automatic step creation is active and available.
Automatic step creation works with previously interrogated application controls.
The feature is automatically available for applications that X-ray Vision supports.
For applications not supported by X-ray Vision, developers must manually create steps using traditional interrogation.''
Detailed Reasoning:
B . Displays a blue Gear icon.
Correct. When automatic step creation is active, the blue gear icon indicates the feature is enabled and ready to record actions.
D . Available for previously interrogated application controls.
Correct. Automatic step creation can only generate steps for controls that have already been interrogated, ensuring proper mapping between actions and UI elements.
E . Automatically available for applications that X-ray Vision supports.
Correct. The feature activates automatically in X-ray Vision--supported applications, which include modern UI frameworks like HTML5 and WPF.
Incorrect Options:
A . Automatically used for applications that X-ray Vision does not support.
Incorrect. It only works for applications supported by X-ray Vision.
C . Usable at any time by clicking the Gear icon.
Incorrect. The gear icon appears only when automatic step creation is available, not universally across all projects.
Final Correct Answer: B, D, E
Extracted and verified from Pega Robotics System Design and Implementation Guide, Automatic Step Creation and X-ray Vision Integration section (Pega Robotics 19.1 and later).