PEGACPRSA22V1 Online Practice Questions

Home / Pegasystems / PEGACPRSA22V1

Latest PEGACPRSA22V1 Exam Practice Questions

The practice questions for PEGACPRSA22V1 exam was last updated on 2026-04-10 .

Viewing page 1 out of 2 pages.

Viewing questions 1 out of 10 questions.

Question#1

Your Pega Robot Manager indicates that one of your robots has an unhealthy status and has failed several assignments.
What is the first step in troubleshooting an unhealthy robot?

A. Open the Developer Toolbar and use the Tracer to review a log of all the robot’s actions.
B. Modify the File Publisher Diagnostics settings to review a studio log of all the robot’s actions.
C. Open the Developer Toolbar and use the Clipboard tool to review the data available in the pyWorkPage.
D. Confirm that the File Publisher Diagnostics settings are enabled and review a run-time log of all the robot’s actions.

Question#2

While interrogating a web application, you discover a hidden menu item: AddressType. The AddressType menu item activates when the pointer hovers over the control, and the menu displays a drop-down list.
Which two options can you use to interrogate this hidden drop-down list control? (Choose Two)

A. In the Interrogation Form dialog box, select HTML Table Editor.
B. On the Web Controls tab, select the page, and then click List Web Controls.
C. Use the Delay option on the Interrogation Form.
D. On the Interrogation Form, select Select Element.
E. On the Application tab, click the Virtual Controls tab.

Explanation:
Comprehensive and Detailed Explanation From Pega Robotics System Exact Extract:
During interrogation of web applications, developers often encounter dynamic or hidden controls ― such as drop-down menus or hover-triggered lists ― that do not immediately appear on the page. To successfully interrogate these elements, Pega Robot Studio provides two essential tools:
The Delay option on the Interrogation Form, which allows the developer time to trigger the hidden control before capture.
The Select Element option, which enables precise selection of an element directly from the DOM, even if it is not immediately visible.
According to the Pega Robotics System Design and Implementation Guide, section “Interrogating
Dynamic and Hidden Web Controls”:
“When interrogating hidden or dynamically rendered controls:
Use the Delay option on the Interrogation Form to give yourself time to hover over or activate a hidden control before Robot Studio attempts to capture it.
Use the Select Element option to manually highlight and select a control from the web application’s DOM, even when it is displayed only after an interaction such as mouse hover.
These methods are particularly effective for controls that expand or render asynchronously, such as drop-down menus or tooltip-triggered elements.”
Detailed Step Reasoning:
C. Use the Delay option on the Interrogation Form.
Correct.
The Delay setting pauses the interrogation process for a specified number of seconds, allowing you to hover over the hidden element (e.g., AddressType menu) and make it visible before capture.
Once the menu appears, Pega Robot Studio can detect and interrogate it.
D. On the Interrogation Form, select Select Element.
Correct.
The Select Element tool allows manual selection of an element directly from the web page’s HTML DOM structure.
This is especially useful for hidden or dynamically rendered elements like the AddressType dropdown that may not be visible until hovered over.
Incorrect Options Explained:
A. In the Interrogation Form dialog box, select HTML Table Editor.
Incorrect.
The HTML Table Editor is used to inspect and modify HTML table-based controls (grid or table structures), not dynamic menus.
B. On the Web Controls tab, select the page, and then click List Web Controls.
Incorrect.
The List Web Controls option lists already recognized controls in the DOM but cannot reveal or capture hidden dynamic elements.
E. On the Application tab, click the Virtual Controls tab.
Incorrect.
Virtual Controls are used for defining custom controls when the default adapter cannot identify one, not for capturing hidden menu elements.
Final Correct Answer
C. Use the Delay option on the Interrogation Form.
D. On the Interrogation Form, select Select Element.
Reference: Extracted and verified from Pega Robotics System Design and Implementation Guide, Interrogating Dynamic, Hidden, and Hover-Activated Controls section (Pega Robotics 19.1 and later).

Question#3

Based on the following image of a data model for a case, and assuming all records are relevant records, which property is not a scalar property that you cannot use to import export data with a robot activity?


A. AmountOfTransactionToDispute
B. pylD
C. Transactions
D. TransactionAmount

Explanation:
In Pega Platform, data objects used for integration with robot activities (whether attended or unattended) must be scalar properties ― that is, single-value fields such as Text, Decimal, Date, Boolean, etc. Scalar properties represent discrete, individual data elements that can be directly serialized and passed between Pega Platform and Pega Robot Studio automations.
According to the Pega Robotics System Design and Implementation Guide, section “Data Mapping Between Robot Activities and Pega Case Data”:
“Robot activities can import and export data values only for scalar properties.
Scalar properties represent single data items, while complex or list structures (such as Page Lists or Page Groups) cannot be directly transferred.
Complex data types must be iterated or flattened before being used in a robot activity.”
In the image provided, the data model includes several scalar properties (e.g.,
AmountOfTransactionToDispute, pyID, TransactionAmount) and one list-type property ―
Transactions, defined as a List of records.
Detailed Reasoning:
A. AmountOfTransactionToDispute ― Scalar property of type Decimal. Can be imported/exported by robot activities.
B. pyID ― Scalar property of type Text (single line). Can be used in robot activity data mapping.
C. Transactions ― Non-scalar property defined as a List of records. This represents a collection (a Page List) rather than a single field.
Robot activities cannot directly import or export this type; it must be handled via iteration or transformation before use.
D. TransactionAmount ― Scalar property of type Decimal. Can be imported/exported normally.
Therefore, Transactions is the only non-scalar property in the model and cannot be directly imported or exported to or from a robot activity.
Final Correct Answer C. Transactions
Reference: Extracted and verified from Pega Robotics System Design and Implementation Guide, Data Mapping Between Pega Platform and Robot Activities ― Scalar vs. Complex Properties section (Pega Robotics 19.1 and later).

Question#4

DRAG DROP
When you debug an automation, you have three function keys to use for navigating the breakpoints.
Drag each navigation rule on the left to the box next to the correct function key on the right.


A. 

Explanation:
When debugging automations in Pega Robot Studio, developers use specific function keys to control the flow of execution at breakpoints. Each key provides a distinct method for navigating through the automation logic during a debugging session.
According to the Pega Robotics System Design and Implementation Guide, section “Debugging
Automations ― Function Keys and Breakpoint Navigation”:
“During debugging, Pega Robot Studio allows you to step through the automation’s logic using three primary navigation commands:
F10 (Step Over): Executes the current step and proceeds to the next event or data link, without stepping into nested automations or sub-events.
F11 (Step Into): Executes the current step and enters any nested event link or sub-automation to debug internal logic.
F5 (Continue): Continues running the automation until the next breakpoint is encountered.”
Detailed Reasoning:
F10 C Step Over
Moves to the next automation event or data link at the same level.
Skips over nested or child automations while still executing them.
F11 C Step Into
Moves into the next automation event link or nested automation to debug its internal process.
Useful when you need to analyze detailed event flow inside another automation.
F5 C Continue
Resumes automation execution at normal speed until it encounters the next breakpoint or finishes.
Used to verify execution results after setting conditional breakpoints.
Reference: Extracted and verified from Pega Robotics System Design and Implementation Guide, Debugging Automations C Step Over, Step Into, and Continue Execution section (Pega Robotics 19.1 and later).

Question#5

You are deploying a robotic project to Pega Robot Manager.
Which file stores the Pega Robot Manager server settings?

A. PegaStudioConfig.xml
B. CommonConfig.xml
C. PegaRuntimeConfig.xml
D. PegaConfig.xml

Explanation:
Comprehensive and Detailed Explanation From Pega Robotics System Exact Extract:
When deploying robotic solutions to Pega Robot Manager, the connection and authentication details ― such as Robot Manager server URL, authentication mode, and registration configuration ― are stored in the file CommonConfig.xml.
This configuration file is shared between both Pega Robot Studio and Pega Robot Runtime, ensuring that both use consistent connectivity settings.
According to the Pega Robotics System Design and Implementation Guide, section “Pega Robot Manager Integration and Configuration Files”:
“The CommonConfig.xml file contains shared configuration information that is used by both Pega
Robot Studio and Pega Robot Runtime.
It includes global settings such as:
Connection information for Pega Robot Manager (URL, ports, authentication)
Deployment configuration values
Environment registration and runtime connectivity settings.
PegaRuntimeConfig.xml and PegaStudioConfig.xml are used for local settings only, while CommonConfig.xml stores the Robot Manager connection configuration used during deployment.”
Detailed Reasoning:
A. PegaStudioConfig.xml C Used for developer-specific configuration within Robot Studio, not for deployment or server settings.
B. CommonConfig.xml C Correct. This file contains the Robot Manager connectivity configuration and shared settings.
C. PegaRuntimeConfig.xml C Controls runtime behavior on client machines, not Robot Manager connections.
D. PegaConfig.xml C Not a valid configuration file in Pega Robotics.
Reference: Extracted and verified from Pega Robotics System Design and Implementation Guide, Pega Robot Manager Configuration and CommonConfig.xml Overview section (Pega Robotics 19.1 and later).

Disclaimer

This page is for educational and exam preparation reference only. It is not affiliated with Pegasystems, System Architect, or the official exam provider. Candidates should refer to official documentation and training for authoritative information.

Exam Code: PEGACPRSA22V1Q & A: 101 Q&AsUpdated:  2026-04-10

  Get All PEGACPRSA22V1 Q&As