Pegasystems PEGACPLSA23V1 Übungsprüfungen
Zuletzt aktualisiert am 27.04.2025- Prüfungscode: PEGACPLSA23V1
- Prüfungsname: Certified Pega Lead System Architecture (LSA) Exam 23
- Zertifizierungsanbieter: Pegasystems
- Zuletzt aktualisiert am: 27.04.2025
Which three of the following options are the different parts of a case in a Cosmos-themed user portal?
(Choose Three)
- A . Utility panel
- B . Media
- C . Summary panel
- D . Activity area
- E . Marketplace
What are three different ways to accommodate temporal data?
- A . Declare the data class as abstract.
- B . Use a data class with an As-Of date property.
- C . Leverage the History-Rule class.
- D . Use a data class with a version property.
- E . Use a custom rule.
Select the primary reason for developing a set of unit lest cases and automated testing Suites in a continuous integration and continuous deployment (CI/CD) model.
- A . Automated testing reduces costs by reducing the need to hire and I rain testing resources.
- B . Automated testing accelerates the deployment of rules from the development environment to target environments.
- C . Automated testing programmatically ensures quality of rules to maintain the integrity of the pipeline.
- D . Automated testing allows for orchestration between automation server and the Execute Test REST service.
What are two ways to minimize or avoid data integrity issues?
- A . Do not persist values that are derivable, such as counts and categorizations, and that are subject to change.
- B . Follow the single source of truth principle (SSOT).
- C . Avoid using properties that represent a version or as-of-date.
- D . Store critical data within multiple tables to prevent data loss.
Which two of the following design approaches are most closely related to the concept of application layering?
(Choose Two)
- A . Liskov Substitution
- B . Template design pattern
- C . Polymorphism
- D . Open-closed principle
You need to define a new LDAP authentication servlet because all of the standard LDAP servlets are being used in authentication services.
Which two task do you perform to implement this requirement.
(Choose TWO)
- A . Copy an existing LDAP servlet and rename it
- B . Create a new mapping servlet and URL pattern
- C . add a new URL pattern to the existing mapping servlet
- D . rename an existing LDAP servlet
Select two ways for queuing an item for a queue processor.
(Choose Two.)
- A . Use Utility smart shape
- B . Use the Queue-for-processing method
- C . Use Run in Background smart shape
- D . Use the Queue for -agent method
In the pharmaceutical industry, cases are routed to different work queues based on the drug type that is defined. Quality control analysts then pick the cases from a work queue. At the XYZ pharmaceuticals company, all current and future cases should route to a single work queue.
What is the best approach to implementing this change when considering in-flight cases?
- A . Create a new application version with a new ruleset. Add the flow into this new ruleset with new changes. Create a new access group and point to this new application version. Users can switch to earlier application versions to work on inflight cases and new application versions for new cases.
- B . Move existing assignments to one side of the process flow, then add a new assignment in the flow with both incoming and outgoing connectors. With this implementation, old cases are unimpacted.
- C . Replace multiple assignment steps with a single assignment step in the flow. If there are no steps executed in this stage, create a custom activity and then call the out-of-the-box RestartStage activity for each in-flight case, to reassign to the new work queue. Ensure that there are no active users during this process.
- D . Replace multiple assignments with a single assignment in the flow. Create a custom activity to invoke a standard Startflow activity for a new assignment to be created.
Review the following classes and properties:
MyCo-Data-Shape-
.Area
.Color
MyCo-Data-Shape-Rectangle –
.Length
.Width
MyCo-Data-Shape-Circle –
.Radius
A page list property is defined at the class group MyCo-FW-ShapeApp-Work. The property name is .Shapes and it is defined as being a Page List of class MyCo-Data-Shape- Which of the following statements are correct?
(Choose Two)
- A . At runtime .Shapes(1) could be of class MyCo-Data-Shape-Rectangle while .Shapes(2) is of class MyCo-Data-Shape-Circle
- B . At runtime pages of .Shapes can be of either MyCo-Data-Shape-Rectangle or MyCo- Data-Shape-Circle but all pages must be the same
- C . At design time PRPC will provide a warning as it is not a good practice to define a page list with an abstract class
- D . At design time an architect can create a rule in MyCo-Data-Shape-Circle regardless of if the rule exists in MyCo-Data-Shape-
- E . At design time an architect can create a rule in MyCo-Data-Shape-Circle only if the rule exists in MyCo-Data-Shape-
An application contains cases which transition though different statuses throughout their life cycle which typically lasts 3 months. Design a reporting strategy to display the number of cases by status at the end of each month for a 12-month period.
- A . Configure an agent to record monthly case status in a separate table and report on that table.
- B . Configure an activity to generate the data in the clipboard and report using a custom section.
- C . Configure a summary report that leverages sub reports for each month.
- D . Configure a Declare index to record case data to a separate table.