Certified System Architect (CSA) 72V1

Here you have the best Pegasystems PEGACSA72V1 practice exam questions

  • You have 34 total questions to study from
  • Each page has 5 questions, making a total of 7 pages
  • You can navigate through the pages using the buttons at the bottom
  • This questions were last updated on November 26, 2024
Question 1 of 34

You are developing a purchase application that integrates with an external inventory management system. A ____________ allows you to build the interface so that Pega can request information from the inventory management system.

    Correct Answer: D

    A connector allows Pega to communicate with and request information from external systems, like an inventory management system. It serves as the interface through which Pega can send requests and receive responses from another application or service, making it the correct choice for integrating with an external system.

Question 2 of 34

When processing an insurance claim you need to retrieve the customer’s insurance policies from a web service. You invoke the connector from a ___________.

    Correct Answer: D

    When processing an insurance claim and needing to retrieve the customer’s insurance policies from a web service, the correct approach is to use a data page. Data pages are designed to retrieve data from various sources, including web services, and cache that data for use in your application. This ensures efficient use of resources and proper encapsulation of the data retrieval logic.

Question 3 of 34

You need to add a button to a user form. When the button is pressed, the application invokes a data transform, then creates a new case.

How do you implement this functionality?

    Correct Answer: D

    To implement functionality where pressing a button invokes a data transform and then creates a new case, you need to configure an action set on the button control. An action set allows you to define a sequence of actions that occur in response to events, such as clicking a button. This sequence can include calling a data transform and then creating a new case, which matches the required functionality described in the question.

Question 4 of 34

An application allows bank customers to apply for a credit card. During the process of applying for the credit card, customers can elect to transfer a balance to the card.

The bank currency offers three balance transfer options for customers applying for a new credit card:

1. 0 percent interest for 6 months.

2. 2.9 percent interest for 12 months.

3. 3.9 percent interest for 24 months.

The bank requires that customers first elect whether to transfer a balance. If customers elect to transfer a balance, they must select one of the three options.

Which control allows you to display all the balance transfer offers on the form, but only allows the customer to select one offer?

    Correct Answer: A

    The most appropriate control to display all the balance transfer offers while allowing the customer to select only one offer is radio buttons. Radio buttons are designed to present multiple options to the user, but only one option can be selected at a time. This matches the requirement of the bank's application process, where customers must choose exactly one of the three balance transfer options if they decide to transfer a balance.

Question 5 of 34

Users are required to enter their date of birth in the format dd/mm/yyyy. Which two options ensure that a user provides a date in the correct format? (Choose two.)

    Correct Answer: A, B

    To ensure that a user provides a date in the correct format, you can use a Calendar control, which allows users to select the date directly, thereby ensuring the correct format. Additionally, you can use an Edit Validate rule to enforce an input pattern, checking if the date entered matches the dd/mm/yyyy format.