Free Pegasystems PEGACPSSA23V1 Exam Actual Questions

The questions for PEGACPSSA23V1 were last updated On Jan 17, 2025

Question No. 1

Offline support requires which two configurations? (Choose two.)

Show Answer Hide Answer
Correct Answer: A, B

For offline support, it's necessary to have the access groups configured to allow offline access to users so that the correct rules and data can be synchronized to the user's device. In addition, the case types must be configured to function properly in an offline environment, ensuring that users can create, update, and submit cases without a network connection. Reference: Pega Mobile Client Developer Guide.


Question No. 2

Identify two options for passing data between a Pega application and a webpage containing a web mashup. (Choose Two)

Show Answer Hide Answer
Correct Answer: A, D

A: Calling the function pega.web.api.doAction() allows for specific actions to be performed in the Pega application from the web mashup, such as refreshing a section or submitting an assignment.

D: Using the attribute data-pega-event-onpagedata allows for passing data from the web mashup to the Pega application when specific events occur on the page. Reference: Pega official documentation on Pega Web Mashup methods and attributes.


Question No. 3

Select the three Pega best practices for developing activities. (Choose Three)

Show Answer Hide Answer
Correct Answer: A, C, E

Pega best practices recommend keeping activities short to enhance maintainability and readability. Custom Java steps should be limited to reduce complexity and potential errors. Activities should also be limited in general, with preference given to other rule types that are more declarative and less procedural, like data transforms, to improve application performance and maintainability. Reference: Pega SSA course materials on activity best practices.


Question No. 4

In which log can you see performance-related alerts that are triggered when an operation exceeds the specified performance threshold7

Show Answer Hide Answer
Correct Answer: C

Performance-related alerts are recorded in the ALERT log. This log contains entries for operations that exceed specified performance thresholds, providing insights into potential performance issues. Reference: Pega Platform Help - System Logs.


Question No. 5

A fitness organization wants to ensure that data is entered correctly into an online form when users apply for, or update, their membership information.

Which scenario requires an edit validate rule?

Show Answer Hide Answer
Correct Answer: A

An edit validate rule is used to ensure that data is entered in a specific format. For membership numbers that need to match a particular pattern (M-######-0#), an edit validate rule would be the appropriate mechanism to enforce this format upon entry. Reference: Pega Platform Help - Edit Validate.