Practice Free PEGACPLSA24V1 Exam Online Questions
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.
Greenfield Data Modeling follows the three-level approach.
What is the order of applying this three-level approach?
- A . Physical, Conceptual, Logical
- B . Logical, Physical, Conceptual
- C . Conceptual, Logical, Physical
- D . Logical, Conceptual, Physical
For which two types of rules can the authentication profile be configured in Pega Platform™? (Choose Two)
- A . Connectors
- B . Activities
- C . Repository
- D . Flows
A low-code developer can select which two of the following participants who are associated with a user account in the application? (Choose Two)
- A . Reporting manager
- B . Current user
- C . Org Unit manager
- D . Workgroup manager
As a Lead System Architect tasked with enhancing a hotel room booking application, your objective is to streamline the booking process by identifying high-value customers. To accomplish this, you have decided to segment customers based on the total revenue generated from their bookings, considering that customers can have multiple bookings. The revenue is calculated by summing the amounts of all bookings made by each customer. Customers will be categorized as follows: Silver: Total booking amount is less than $500. Gold: Total booking amount ranges from $500 to $2000. Platinum: Total booking amount exceeds $2000. You want to use SQL functions for efficient customer categorization.
Which SQL function code correctly determines the customer categories?
- A . CASE WHEN {1} < 500 THEN ‘Silver’ WHEN {1} BETWEEN 500 AND 2000 THEN ‘Gold’ ELSE ‘Platinum’ END
- B . IF {1} < 500 THEN ‘Silver’ ELSE IF {1} >= 2000 THEN ‘Platinum’ ELSE ‘Gold’ END
- C . IF {1} < 500 THEN ‘Silver’ ELSE IF {1} BETWEEN 500 AND 2000 THEN ‘Gold’ ELSE ‘Platinum’ END
- D . SELECT CASE WHEN {1} < 500 THEN ‘Silver’ WHEN {1} BETWEEN 500 AND 2000 THEN ‘Gold’ ELSE ‘Platinum’ END
How does automated testing contribute to the efficiency of a release pipeline? (Select all that apply)
- A . Automated testing eliminates the need for continuous integration.
- B . Automated tests can be run automatically upon code changes, reducing manual effort.
- C . Automated testing ensures that no bugs or defects are present in the software.
- D . Automated tests help to speed up the overall deployment process.
- E . Automated testing is essential for version control.
When can problem flows be used to resolve flow issues in Pega applications? (Select all that apply)
- A . To handle unexpected errors or exceptions during case processing.
- B . To route cases to alternate paths based on changing business requirements.
- C . To create parallel processes that run simultaneously within a case.
- D . To automatically generate reports and dashboards for case analysis.
XYZ Corp wants to streamline its business processes across various divisions and units. The goal is to develop a Pega application structure that efficiently uses resources while promoting a modular reuse architecture.
Given this scenario, which of the following options is the correct approach?
- A . Create an enterprise application with a framework application structure, and then create the required division and unit applications as implementation application structures.
- B . Create an enterprise application with an implementation application structure. Then, create the required division and unit applications as implementation application structures.
- C . Create an enterprise application with both framework and implementation application structures, and then create the required division and unit applications as implementation application structures on top of the framework structure.
- D . Create separate implementation application structures for each division and unit. Each application communicates with another by using DX APIs.
You can configure the Stream service to run in External Mode.
- A . False
- B . True
Select the three best practices that can help minimize security vulnerabilities in the custom HTML rule. (Choose Three)
- A . Use the StringUtils.crossScriptingFilter method when using parameters in a Pega Platform™ reference tag.
- B . Use hidden elements (type=hidden).
- C . Use of the SafeURL function to generate Pega Platform™ request URLs in custom JavaScript.
- D . Use dynamic SQL statements instead of prepared statements to prevent possible SQL injection.
- E . Minimize the use of mode=literal.
