Pass Your Certified Senior System Architect PEGACPSSA23V1 Exam on Feb 19, 2025 with 145 Questions
PEGACPSSA23V1 Free Exam Study Guide! (Updated 145 Questions)
NEW QUESTION # 81
Which two value types can be used in an Application Setting when modifying values for each production level? (Choose Two)
- A. Data transform
- B. Picklist
- C. Text
- D. Class
Answer: B,C
Explanation:
In Application Settings, you can specify different values for production levels using text (e.g., URLs, file paths) or picklists (for selecting from predefined options). These settings allow for easy adjustment of values according to the environment the application is running in. Reference: Pega Platform Help - Application Settings.
NEW QUESTION # 82
Organize the classes and associated rules in the appropriate Enterprise Class Structure (ECS) layer.
Answer:
Explanation:
Explanation:
Graphical user interface, application Description automatically generated
NEW QUESTION # 83
Which two statements describe the role of the cache manifest in a mobile app? (Choose two.)
- A. Enables users to continue interacting with mobile apps while offline.
- B. Supports debugging efforts by providing a run-time view of the rules accessed by the app.
- C. Provides access to static resources such as HTML files, image files, or JS files.
- D. Allows downloading of rules for offline use with a mobile app.
Answer: C,D
Explanation:
The cache manifest in a mobile app facilitates the use of the app while offline by allowing the download of rules and static resources. This ensures that users can access the app's functionality and interface elements even when they do not have an internet connection. Reference: Pega Mobile Client Developer Guide.
NEW QUESTION # 84
Which two situations are likely to negatively impact application performance? (Choose Two)
- A. Business architects have delegated a large number of rules to process owners.
- B. A developer uses an SQL query tool or activities to archive case data before purging tables.
- C. Several applications on the system write cases to the pr_other table in the database.
- D. A report definition generates report data based on several properties stored in the BLOB.
Answer: B,D
Explanation:
Generating report data based on several properties stored in the BLOB (Binary Large Object) can impact performance because it requires full database table scans. Using SQL query tools or activities to archive case data before purging tables can also negatively impact performance, as they may not be optimized for the Pega Platform's data structures. Reference: Pega Platform Help - Performance Best Practices.
NEW QUESTION # 85
Which two statements about keyed data pages are true? (Choose Two)
- A. A keyed data page can have multiple keys.
- B. A keyed data page is required for all data pages.
- C. A keyed data page can use a report definition.
- D. A keyed data page can return multiple embedded pages.
Answer: A,C
Explanation:
Keyed data pages can return multiple embedded pages if the data structure includes lists or other page structures. They can also have multiple keys, which allows them to return data based on a combination of key values. References: Pega Platform Help - Data Pages.
NEW QUESTION # 86
Which two configurations can you use to include access groups into your Product rule? (Choose two.)
- A. Export the access groups using the Access Manager.
- B. Add the access groups to the application record.
- C. Add the access group to the Product record in the Individual instances to include section.
- D. Associate the access groups with a ruleset included in the application.
Answer: B,C
Explanation:
To include access groups in your Product rule, you can add the access groups to the application record, which incorporates all the necessary rules for the application. Additionally, you can add the access group directly to the Product rule in the 'Individual instances to include' section, which allows you to specify individual rules and data instances that the Product rule should include. Reference: Pega Platform Help - Creating a Product rule.
NEW QUESTION # 87
You are sending information to an external system of record by using a connector. What do you use to implement this requirement?
- A. Reference a connector from a data transform.
- B. Configure a service rule and listener.
- C. Call a connector from a Save data page step.
- D. Create a new external data source.
Answer: A
Explanation:
To send information to an external system of record using a connector, you would typically reference a connector from within a data transform. The data transform can manipulate the data as needed before it is sent out through the connector. References: Pega Platform Help - Connectors.
NEW QUESTION # 88
Which three types of information can represent an attribute in attribute-based access control (ABAC)' (Choose Three)
- A. Numerical value
- B. List of strings
- C. Property
- D. Single string
- E. Boolean
Answer: A,B,D
Explanation:
In attribute-based access control (ABAC), an attribute can be a property (such as an age or status), a Boolean value (indicating true or false conditions), or a single string (such as a name or identifier). These attributes are evaluated to determine access rights within the application. References: Pega Platform Help - ABAC.
NEW QUESTION # 89
Which two configurations do you implement when using a Pega Web Mashup? (Choose Two)
- A. Add an access group for the application rules that need to be accessed from the external system.
- B. Configure a node-level data page to hold security access information about the external system.
- C. Leverage the standard authentication service IACAuthentication and update the authentication activities.
- D. Configure the application permissions by specifying a list of trusted domains in the application rule.
Answer: C,D
Explanation:
A: When using a Pega Web Mashup, leveraging the standard authentication service IACAuthentication and updating the authentication activities to match the external system's requirements is a common practice.
D: Configuring application permissions by specifying a list of trusted domains in the application rule is important for security purposes and to control which external domains are allowed to embed the mashup. Reference: Pega official documentation on Pega Web Mashup configuration.
NEW QUESTION # 90
A hospital uses a Patient visit case type to track Emergency Room (ER) visits. The case type can create Lab analysis and Diagnostic imaging child cases. While the child cases are active, the attending doctor must be able to update the Patient visit case with notes.
Which two configurations, when performed together, allow a doctor to update the parent case while staff work on the respective child cases? (Choose Two)
- A. Configure the Patient visit case type to allow one user.
- B. Configure the Lab analysis and Diagnostic imaging case types to allow other users to open the parent case type.
- C. Configure the Lab analysis and Diagnostic imaging case types to allow one user.
- D. Configure the Patient visit case type to allow multiple users.
Answer: B,D
Explanation:
To enable the attending doctor to update the Patient visit case while the Lab analysis and Diagnostic imaging child cases are active, the following configurations are necessary:
* A: Configuring the Patient visit case type to allow multiple users ensures that more than one user can work on the case simultaneously, which would allow the doctor to update the case with notes even while the child cases are in progress.
* B: Configuring the Lab analysis and Diagnostic imaging case types to allow other users to open the parent case type ensures that opening the child cases does not lock the parent case, allowing the doctor to make updates concurrently. References: Pega official documentation on case type configuration and locking strategies.
NEW QUESTION # 91
Select the three Pega best practices for developing activities. (Choose Three)
- A. Use only activities to support queue processing and interfaces.
- B. Limit the use of activities. Use alternative rule types such as data transforms whenever possible.
- C. Limit activity calls to at most three to prevent performance problems.
- D. Limit custom Java steps whenever possible.
- E. Keep activities short. Limit your activities to fewer than 15 steps.
Answer: B,D,E
Explanation:
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.
NEW QUESTION # 92
A Pega Platform application has just been integrated with an external data source.
Which of the following tests do you perform to ensure that the integration passes data as expected?
- A. Scenario test
- B. Unit test
- C. Automation test
- D. Performance test
Answer: A
Explanation:
Unit tests are the first line of testing when ensuring that an integration passes data as expected. They are designed to test individual parts of the code - in this case, the integration point with an external data source
- to confirm that it works properly in isolation. References: Pega Platform Help - Automated Unit Testing
NEW QUESTION # 93
How do you ensure that only a manager can run a specific flow action?
- A. Add an Access When condition to the flow action to determine whether the user is a manager.
- B. Add a validate rule to the flow action form to determine whether the user is a manager.
- C. Add a privilege to the flow action form, then add the privilege to a role assigned to the access group for managers.
- D. Add a pre-processing activity to the flow action form to determine whether the user is a manager.
Answer: C
Explanation:
To ensure that only a manager can run a specific flow action, the best approach is to add a privilege to the flow action form (B) and then assign this privilege to a role that is exclusive to managers. This role is then associated with the access group designated for managers. Privileges provide a granular level of security that can be used to control access to specific actions within a Pega application, such as executing a flow action. By leveraging privileges, you can ensure that only users with the manager role, who possess the necessary privilege, can execute the flow action, thereby enforcing the desired level of access control.References: Pega Community documentation on privileges, roles, and access groups.
NEW QUESTION # 94
Which action can a Declare OnChange rule perform when a specified property changes?
- A. Suspend the current work object
- B. Update an activity
- C. Execute a data transform
- D. Specify which flow action to run
Answer: A
Explanation:
A Declare OnChange rule is designed to perform an action when a specified property changes. The action that a Declare OnChange rule can perform includes executing a data transform, which allows for the automated update of properties when a change is detected in the specified property. References: Pega official documentation on Declare OnChange rules.
NEW QUESTION # 95
Which two statements are valid regarding Pega Web Mashup? (Choose Two)
- A. Pega Platform limits mashup users to working on existing cases.
- B. A mashup can allow access to Dev Studio for full system configuration.
- C. A user can view their worklist in an external portal and select items on which to take action.
- D. Mashup requests are checked for the corresponding mashup channel ID parameter.
Answer: C,D
Explanation:
* B: Mashup requests are checked for the corresponding mashup channel ID parameter to ensure that the request is coming from a trusted source and is intended for the Pega application.
* D: A user can view their worklist in an external portal and select items on which to take action, which is one of the key features of the Pega Web Mashup as it extends Pega's capabilities to external web pages.
References: Pega official documentation on Pega Web Mashup capabilities.
NEW QUESTION # 96
An application contains a flow action with an Apply to: class of TRB-HRApps-Work-Feedback in a locked ruleset. When updating the application, you save the existing flow action into a new minor version of the ruleset this time applied to TRB'HRApps-Work so it can be used by more than one case type.
How do you prevent the application from using the rule in TRB-HRApps-Work-Feedback?
- A. Save an additional new version of the flow action applied to TRB-HRApps-Work-Feedback and set the availability to "Blocked".
- B. Save an additional new version of the flow action applied to TRB-HRApps-Work-Feedback and set the availability to "Not available".
- C. Save an additional new version of the flow action applied to TRB-HRApps-Work-Feedback and set the availability to "Withdrawn".
- D. Save an additional new version of the flow action applied to TRB-HRApps-Work and set the availability to "Final".
Answer: C
Explanation:
To prevent the application from using the rule in TRB-HRApps-Work-Feedback, you would save an additional new version of the flow action applied to TRB-HRApps-Work-Feedback and set the availability to
"Withdrawn". This marks the rule as no longer valid for use in the application. References: Pega official documentation on rule availability.
NEW QUESTION # 97
Which two statements are true about database tables in Pega Platform? (Choose Two)
- A. The PegaRULES database contains rules while PegaDATA contains work instances.
- B. The report definition rule should only be used against one table for performance reasons.
- C. The History record table contains a record of when each user logged in to the system.
- D. The Database Table rule allows configuration of a connection to a specific table.
Answer: A,D
Explanation:
* A: In Pega Platform, the PegaRULES database is used to store rules, while the PegaDATA database contains work instances and other data instances.
* B: The Database Table rule in Pega allows you to configure the connection settings to a specific external database table, facilitating the interaction with external data sources. References: Pega official documentation on Pega Platform databases and Database Table rules.
NEW QUESTION # 98
......
Pegasystems PEGACPSSA23V1 Exam Syllabus Topics:
| Topic | Details |
|---|---|
| Topic 1 |
|
| Topic 2 |
|
| Topic 3 |
|
| Topic 4 |
|
| Topic 5 |
|
PEGACPSSA23V1 Dumps for Certified Senior System Architect Certified Exam Questions and Answer: https://www.passreview.com/PEGACPSSA23V1_exam-braindumps.html
Realistic Verified PEGACPSSA23V1 exam dumps Q&As - PEGACPSSA23V1 Free Update: https://drive.google.com/open?id=1yTsNekZuAWqG1biIbXBsbg73ABlqbonv