Pegasystems PEGACPSA23V1 Exam (page: 5)
Pegasystems Certified Pega System Architect 23
Updated on: 31-Mar-2026

Viewing Page 5 of 33

A report contains columns for Customer, Billing Cycle, Credit Card, and Expiration Date. A manager requests that the report show only those customers who meet the following conditions: - The customer is on a monthly billing cycle - The credit card is either MoreCash or Vista - The credit card expires within 60 days Which set of filtering conditions returns a report with the desired data?

  1. Credit Card equals MoreCash AND Credit Card equals Vista AND Billing Cycle equals monthly AND Expiration Date is 60 days greater than today
  2. Credit Card equals MoreCash OR Credit Card equals Vista AND Billing Cycle equals monthly AND Expiration Date equals next 60 days.
  3. Credit Card equals MoreCash OR Credit Card equals Vista AND Billing Cycle is not quarterly AND Expiration Date is less than 60 days
  4. Credit Card equals MoreCash or Vista, Billing Cycle equals monthly, and Expiration Date equals next 60 days

Answer(s): B,D

Explanation:

To fulfill the manager's request for a report showing only customers who are on a monthly billing cycle, use a MoreCash or Vista credit card, and whose credit card expires within 60 days, the filtering conditions need to precisely combine these criteria.
B . Credit Card equals MoreCash OR Credit Card equals Vista AND Billing Cycle equals monthly AND Expiration Date equals next 60 days: This set of conditions accurately captures the required filters. The use of "OR" between the Credit Card conditions allows for the inclusion of customers with either MoreCash or Vista credit cards. The "AND" conjunction with Billing Cycle equals monthly ensures that only those on a monthly billing cycle are included. Lastly, specifying that the Expiration Date equals the next 60 days filters for credit cards expiring within the specified timeframe. This combination of conditions ensures the report displays precisely the desired data. Option A incorrectly uses "AND" for credit card types, which is logically impossible since a credit card cannot be both types simultaneously. Option C inaccurately suggests using a condition on the billing cycle that is not aligned with the requirement and incorrectly frames the expiration date condition. Option D simplifies the conditions but lacks the precise logical structure provided in option B, potentially leading to confusion or incorrect implementation.


Reference:

Pega's reporting features and documentation detail how to construct complex filter conditions in report definitions, ensuring accurate and useful data retrieval based on specified criteria.



A requirement for a hotel reservation case type states that as customers change their room selection, the total cost of the reservation updates. How do you satisfy this requirement?

  1. Configure a Validate rule for the room selection step.
  2. Apply a Disable when condition to the total cost field.
  3. Add a When condition to the room selection step.
  4. Define a declare expression for the total cost field.

Answer(s): D

Explanation:

To meet the requirement that the total cost of a hotel reservation updates as customers change their room selection, using a declare expression is the most effective approach. D . Define a declare expression for the total cost field: A declare expression allows for the automatic calculation of the total cost field whenever related properties, such as room selection, change. This setup ensures that the total cost reflects the current room selection dynamically, providing an updated cost to the customer without manual intervention. Configuring a Validate rule (A) is typically used for verifying that entered data meets certain criteria, not for dynamically updating values. Applying a Disable when condition (B) would not contribute to the calculation or update of the total cost but would instead control the editability of the field. Adding a When condition (C) to the room selection step could influence the flow of the case but does not directly result in updating the total cost.


Reference:

Pega's documentation on declare expressions elaborates on their use for automatically updating property values based on changes in other properties, highlighting how this feature facilitates real-time data adjustments within applications.



A requirement states When a customer applies for a credit card, a credit check must be completed in order for the credit card to be approved.
Select the case type relationship that satisfies the requirement.

  1. Make both loan request and credit check top cases.
  2. Make credit check a spin-off case of credit card request.
  3. Make credit check a child case of credit card request.
  4. Make credit card request a child case of credit check.

Answer(s): C

Explanation:

For the requirement that a credit check must be completed for a credit card to be approved, incorporating the credit check as part of the credit card application process is necessary. The most straightforward way to model this is by using case type relationships. C . Make credit check a child case of credit card request: This configuration establishes the credit check as an integral step within the credit card request process, ensuring that the credit check is completed before the credit card can be approved. Making the credit check a child case means it is directly associated with and dependent on the parent credit card request case, aligning perfectly with the requirement.
Making both the loan request and credit check top cases (A) does not establish the necessary dependency. Creating a spin-off case (B) suggests a parallel or subsequent process not inherently dependent on the completion of the credit check for the credit card request, which could misalign with the requirement. Making the credit card request a child case of credit check (D) inverts the intended relationship and does not accurately represent the process flow described in the requirement.


Reference:

Pega's case management documentation provides insights into designing case hierarchies and relationships, including the use of child cases to model dependent processes within an overarching case.



A requirement states: A customer can update an address at any point during case processing by performing the following steps.
1. The customer submits the new address.
2. The application verifies that the address matches postal service requirements.
3. The customer then approves the corrected address. How do you configure this requirement?

  1. Add a case-wide optional action to the workflow for the address submission.
  2. Add a case-wide optional process to the case workflow to perform the address change.
  3. Add an alternate stage to the case life cycle to change the address.
  4. Add a button to each assignment to present the customer with a form to submit a new address.

Answer(s): A

Explanation:

To configure the requirement that allows a customer to update their address at any point during case processing, including submission, verification, and approval of the new address, an approach that provides flexibility and accessibility throughout the case lifecycle is needed. A . Add a case-wide optional action to the workflow for the address submission: This configuration enables the address update functionality to be accessible at any stage of the case processing. A case- wide optional action ensures that the customer can initiate the address change process whenever necessary, without being constrained by the current stage or step in the case. This approach aligns with the requirement



A requirement states: Loan applicants must enter their annual salary. If the salary is above the qualifying threshold, the application is automatically approved. If the salary is below the threshold, the applicant must identify a cosigner.
Select the two configuration options that follow best practices to meet the requirement. (Choose Two)

  1. Design a user view with an annual salary field and a data relationship for cosigner information.
    Use a visibility condition to display the cosigner information when the salary is below the threshold.
  2. Use a collect information step with an annual salary field. Use a decision shape to determine whether to advance to a step to enter cosigner information or complete the process.
  3. Design a user view with an annual salary field. Create an optional action to collect information about the cosigner and assign the action to the appropriate stage.
  4. Create an assignment step for a loan officer to review the applicant's annual salary and determine if a cosigner is necessary.

Answer(s): A,B

Explanation:

To meet the requirement that loan applicants must enter their annual salary and that the application process diverges based on whether the salary is above or below a qualifying threshold, the configuration options chosen must efficiently manage the conditional logic and user interaction. A . Design a user view with an annual salary field and a data relationship for cosigner information:
This approach efficiently handles the collection of applicant salary information and conditional display of cosigner information fields. A visibility condition based on the annual salary ensures that additional cosigner information is requested only when necessary, streamlining the application process for those above the threshold.
B . Use a collect information step with an annual salary field. Use a decision shape to determine whether to advance to a step to enter cosigner information or complete the process: This configuration leverages the process modeling capabilities in Pega, where a decision shape dynamically directs the flow of the application based on the salary entered. It succinctly captures the requirement's logic, ensuring applicants are either promptly approved or directed to provide cosigner details, as appropriate.
Option C proposes an optional action for collecting cosigner information, which might not strictly enforce the requirement for applicants below the salary threshold. Option D, involving manual review by a loan officer, introduces potential bottlenecks and departs from the requirement for automatic approval based on salary.


Reference:

Pega's best practices for application development emphasize the importance of designing user interfaces and workflows that efficiently manage data collection and conditional processing, aligning with requirements for dynamic and responsive application behavior.



A requirement states: The date of birth submitted for first grade students must be at least five years before September 1 of the current year.
Which three validation methods, when applied in combination, satisfy the requirement? (Choose Three)

  1. When rule
  2. Calendar control
  3. Date data type
  4. Validation rule
  5. Edit validate rule

Answer(s): A,D,E

Explanation:

To ensure that the date of birth submitted for first-grade students meets the requirement of being at least five years before September 1 of the current year, a combination of validation methods is necessary for comprehensive and effective validation.
A . When rule: Can be used to determine if the provided date of birth satisfies the age condition relative to September 1 of the current year, serving as a condition in process flows or UI elements. D . Validation rule: Enables the definition of broader validation criteria that can encompass complex logic, including checking the student's age based on their date of birth in relation to a specific cutoff date.
E . Edit validate rule: Provides a mechanism for implementing pattern-based validations or more intricate checks, including verifying that a date of birth makes a student eligible for first grade based on age.
Calendar control (B) facilitates user input but does not enforce the specific age requirement on its own. Using the Date data type (C) ensures the field accepts dates, but without additional validation logic, it doesn't guarantee compliance with the age requirement.


Reference:

Pega's official documentation on validation techniques outlines how to use various rules and controls to enforce data integrity and business rules, including age-based criteria for process eligibility.



A requirement states: The tax identification number must contain 10 digits. How do you configure the field to support this requirement?

  1. Set the minimum and maximum values to "10" in a text field
  2. Use an edit validate rule that validates the tax identification number pattern.
  3. Use a decimal property type and make the field required.
  4. Configure a validate rule to test the tax identification number pattern.

Answer(s): B

Explanation:

For the requirement that the tax identification number must contain 10 digits, configuring the field to enforce this specific format is crucial.
B . Use an edit validate rule: This rule type is designed to enforce specific patterns or formats in data input. By configuring an edit validate rule for the tax identification number field, the system can ensure that only values matching the 10-digit pattern are accepted, directly meeting the requirement.
Setting the minimum and maximum values in a text field (A) might control the length of input but does not enforce numeric or pattern-specific constraints. Using a decimal property type (C) ensures numeric input but does not restrict the field to exactly 10 digits or to being treated as a non-numeric pattern. Configuring a validate rule (D) could enforce certain conditions but is generally broader and less specific than an edit validate rule for pattern enforcement.


Reference:

Pega's documentation on field validation highlights the use of edit validate rules for enforcing specific input patterns, ensuring data entered into the application meets predefined formats.



A requirement states: When a business guest checks out of a hotel, the guest must complete a hotel review to receive a corporate discount. Select the case type relationship that satisfies the requirement.

  1. Configure hotel review as a spin-off case of the checkout request.
  2. Configure checkout request as a child case of hotel review.
  3. Configure both checkout request and hotel review as top-level cases.
  4. Configure hotel review as a child case of the checkout request.

Answer(s): D

Explanation:

To satisfy the requirement that a business guest must complete a hotel review to receive a corporate discount at checkout, the relationship between the checkout process and the hotel review process must be appropriately configured.
D . Configure hotel review as a child case of the checkout request: This configuration establishes the hotel review



Viewing Page 5 of 33



Share your comments for Pegasystems PEGACPSA23V1 exam with other users:

Kvana 9/28/2023 12:08:00 PM

good info about oml
UNITED STATES


Checo Lee 7/3/2023 5:45:00 PM

very useful to practice
UNITED STATES


dixitdnoh@gmail.com 8/27/2023 2:58:00 PM

this website is very helpful.
UNITED STATES


Sanjay 8/14/2023 8:07:00 AM

good content
INDIA


Blessious Phiri 8/12/2023 2:19:00 PM

so challenging
Anonymous


PAYAL 10/17/2023 7:14:00 AM

17 should be d ,for morequery its scale out
Anonymous


Karthik 10/12/2023 10:51:00 AM

nice question
Anonymous


Godmode 5/7/2023 10:52:00 AM

yes.
NETHERLANDS


Bhuddhiman 7/30/2023 1:18:00 AM

good mateial
Anonymous


KJ 11/17/2023 3:50:00 PM

good practice exam
Anonymous


sowm 10/29/2023 2:44:00 PM

impressivre qustion
Anonymous


CW 7/6/2023 7:06:00 PM

questions seem helpful
Anonymous


luke 9/26/2023 10:52:00 AM

good content
Anonymous


zazza 6/16/2023 9:08:00 AM

question 21 answer is alerts
ITALY


Abwoch Peter 7/4/2023 3:08:00 AM

am preparing for exam
Anonymous


mohamed 9/12/2023 5:26:00 AM

good one thanks
EGYPT


Mfc 10/23/2023 3:35:00 PM

only got thru 5 questions, need more to evaluate
Anonymous


Whizzle 7/24/2023 6:19:00 AM

q26 should be b
Anonymous


sarra 1/17/2024 3:44:00 AM

the aaa triad in information security is authentication, accounting and authorisation so the answer should be d 1, 3 and 5.
UNITED KINGDOM


DBS 5/14/2023 12:56:00 PM

need to attend this
UNITED STATES


Da_costa 8/1/2023 5:28:00 PM

these are free brain dumps i understand, how can one get free pdf
Anonymous


vikas 10/28/2023 6:57:00 AM

provide access
EUROPEAN UNION


Abdullah 9/29/2023 2:06:00 AM

good morning
Anonymous


Raj 6/26/2023 3:12:00 PM

please upload the ncp-mci 6.5 dumps, really need to practice this one. thanks guys
Anonymous


Miguel 10/5/2023 12:21:00 PM

question 16: https://help.salesforce.com/s/articleview?id=sf.care_console_overview.htm&type=5
SPAIN


Hiren Ladva 7/8/2023 10:34:00 PM

yes i m prepared exam
Anonymous


oliverjames 10/24/2023 5:37:00 AM

my experience was great with this site as i studied for the ms-900 from here and got 900/1000 on the test. my main focus was on the tutorials which were provided and practice questions. thanks!
GERMANY


Bhuddhiman 7/20/2023 11:52:00 AM

great course
UNITED STATES


Anuj 1/14/2024 4:07:00 PM

very good question
Anonymous


Saravana Kumar TS 12/8/2023 9:49:00 AM

question: 93 which statement is true regarding the result? sales contain 6 columns and values contain 7 columns so c is not right answer.
INDIA


Lue 3/30/2023 11:43:00 PM

highly recommend just passed my exam.
CANADA


DC 1/7/2024 10:17:00 AM

great practice! thanks
UNITED STATES


Anonymus 11/9/2023 5:41:00 AM

anyone who wrote this exam recently?
SOUTH AFRICA


Khalid Javid 11/17/2023 3:46:00 PM

kindly share the dump
Anonymous