Pegasystems PEGACPLSA23V1 Übungsprüfungen
Zuletzt aktualisiert am 11.05.2025- Prüfungscode: PEGACPLSA23V1
- Prüfungsname: Certified Pega Lead System Architecture (LSA) Exam 23
- Zertifizierungsanbieter: Pegasystems
- Zuletzt aktualisiert am: 11.05.2025
You need to automate a claim adjudication process in which files containing claims are parsed, verified, and adjudicated. Claims which pass those initial steps are automatically created for further processing. A single file containing up to 1,000 claims is received daily before 5:00 PM.
Claim verification is simple and takes a few milliseconds, but claim adjudication might take up to five minutes.
Which two design options best fit this solution?
- A . Create a queue processor to perform the calculation. Use a Run in background to call the queue processor. Pause the case processing and wait for the queue processor to complete processing.
- B . Create an advanced agent to identify all the cases for adjudication with status as Pending-Adjudication.
- C . Create a job scheduler to fetch all the claims with status as Pending-Adjudication and process for calculation.
- D . Create a standard agent to perform the case processing and calculation.
- E . In an activity, invoke the Queue-For-Processing method against each claim.
Which technology is used by Pega Process Fabric to ensure efficient communication between microservices in a distributed architecture?
- A . Docker
- B . Kubernetes
- C . Hazelcast
- D . AWS Lambda
In a credit card application, the Verify Customer step in the first stage is routed to a work queue. Analyst 1 pulls the case by using Get Next Work. In the next stage, the case is routed to the approval work queue, and Analyst 2 pulls the case by using Get Next Work.
If Analyst 2 approves the case, it is moved to the Fulfillment stage for card issuance. If the case is rejected, it moves back to the Verify Customer step of the first stage and is routed to Analyst 1 (who worked on the case initially).
What is the best way to implement this requirement?
- A . Use custom routing activity in the Verify Customer step to route to Analyst1 by using the case participant role (VerifyAnalyst).
- B . Use the Custom activity and call Work.ReassignToWorkBasket if the VerifyAnalyst field is empty. Otherwise, route to the first analyst by using the VerifyAnalyst field.
- C . Use the business logic in the Route to field of the Verify Customer Assignment step, and route to the operator if the VerifyAnalyst field has the value that is set in the post-processing flow action of the Verify Customer step. Otherwise, route to the work queue.
- D . Use the Work.Reassign activity to route to the VerifyAnalyst case participant role if available in the case; otherwise, route to the work queue in the Verify Customer step.
When implementing a Next-Best-Action, the customer Lifetime value Threshold is used to __________ for an offer
- A . determine customer eligibility
- B . apply the customer’s lifetime value
- C . prioritze high value propositions
- D . prioritize customer
Identify the two correct statements regarding Localization wizard capabilities.
(Choose Two)
- A . Creates field value rules for all labels used in the application.
- B . Extracts the string values from all application field values, paragraphs, and correspondence records.
- C . Generates a package for French even though Pega provides an associated language pack.
- D . Automatically sets the locale, base currency, and time zones based on the user’s language.
The Center of Excellence (COE) team is performing a design review of multiple applications. The team identifies that some applications are not in line with the Center-out™ business architecture.
Which two of the following design statements are uncharacterisitc of the Center-out approach?
(Choose Two)
- A . The organization currently operates in one region only, so the design has one enterprise layer and one production application layer. Separate the organization-wide assets from the assets that are specific to the production application.
- B . All the channels in an organization have their own back-end-specific business logic to retrieve and display the required data.
- C . The organization uses two different legacy database systems: define data access, and persistence with the data virtualization layer.
- D . The organization uses two different legacy database systems, so define data access and data presentation rules that are very specific to the existing database vendors. The execution of database queries is faster, and output can be displayed very quickly with this design approach.
An existing process uses an integrator shape to exchange data with an external system.
Which of the following flows is used to send email correspondence for exceptions that occur with the integrator shape?
- A . pzStageProblems
- B . ConnectionProblem
- C . ProblemFlow
- D . FlowProblems
A report definition is configured to run as a scheduled job with 20 columns. The performance of the report definition is slow, and it times out.
What are the three reasons for the poor performance of the report definition?
(Choose Three)
- A . The report definition is configured to use declare indexes.
- B . The report definition is configured to run on ancestor classes.
- C . Several columns that are used for retrieval are not exposed.
- D . The report definition has joins on unindexed columns.
- E . The EXPLAIN PLAN for the query shows the execution of the full table scan.
An HR application has an employee absentee report that is generated and sent to the respective managers on the following day based on the reporting structure.
Which of the following approaches best suits the requirement?
- A . Generate a report and use data pages to load the data and filter on the reporting manager for their direct reports.
- B . Generate a report based on the filters that are available as drop-down lists.
- C . Build separate reports with the proper filter conditions.
- D . Create appropriate reports by using subreports.