Logo Passei Direto
Material
Study with thousands of resources!

Text Material Preview

PEGACPLSA88V1 Certified Pega Lead System Architect (CPLSA) Exam 8.8
exam dumps questions are the best material for you to test all the related
Pegasystems exam topics. By using the PEGACPLSA88V1 exam dumps
questions and practicing your skills, you can increase your confidence and
chances of passing the PEGACPLSA88V1 exam.
Features of Dumpsinfo’s products
Instant Download
Free Update in 3 Months
Money back guarantee
PDF and Software
24/7 Customer Support
Besides, Dumpsinfo also provides unlimited access. You can get all
Dumpsinfo files at lowest price.
Certified Pega Lead System Architect (CPLSA) Exam 8.8 PEGACPLSA88V1
exam free dumps questions are available below for you to study. 
Full version: PEGACPLSA88V1 Exam Dumps Questions
1.Which three approaches arc considered a PegaUnit: testing best practice? (Choose Three)
A. A test ruleset is placed at the top of an application's ruleset stack.
B. A test case uses limited assertions.
C. A test case groups relevant asseitions together.
D. A test case is not necessary when an error message is the expected result.
E. A test case focuses on a single area of functionality.
Answer: A C, E
Explanation:
PegaUnit testing best practices include:
A test ruleset is placed at the top of an application's ruleset stack:
Ensuring the test ruleset is at the top makes sure that the latest test rules are executed first, which
helps in isolating and testing changes effectively.
 1 / 19
https://www.dumpsinfo.com/unlimited-access/
https://www.dumpsinfo.com/exam/pegacplsa88v1
A test case groups relevant assertions together:
Grouping relevant assertions in a test case ensures that related conditions are checked together,
providing a more comprehensive and organized test output. A test case focuses on a single area of
functionality:
Focusing on a single area of functionality per test case simplifies testing and debugging. It ensures
that each test case is specific and clear in its purpose.
Reference: Pega Documentation on PegaUnit Testing: PegaUnit Testing
Pega Documentation on Best Practices for Testing: Testing Best Practices
This comprehensive approach ensures that all the answers are verified and supported by references
to Pega Lead System Architect documentation.
2.MyHealth Corporation wants to use the age of the claim to increase the urgency of the assignment
so that persons processing the claims work on the most urgent claims first. The claim assignment
urgency increases by 1 each day the claim remains in an Unresolved status. At any time, MyHealth
has up to 10,000 claims that are in process. Claims in the PendingProcessing workbasket are subject
to this calculation. The application updates the claim urgency daily before the work day begins. All
claims are processed within 30 days.
Which approach satisfies the claim urgency requirement and provides the best experience for the
user who processes the claims?
A. Use the service-level agreement of the case to increase the value of pyUrgencyAssignAdjust by 1.
Reset the goal date to the following day.
B. Use a declare expression to increment the value of pyUrgencyAssignAdjust by 1. When a user
who processes claims opens the assignment, the urgency is increased by 1.
C. Use a job scheduler on a dedicated node to increase the value of pyUrgencyAssignAdjust by 1 for
every assignment that matches the selection criteria.
D. Use the service-level agreement of the assignment to increase the value of
pyUrgencyAssignAdjust by 1 every day the claim is in an Open status.
Answer: C
Explanation:
Job Scheduler:
Using a job scheduler on a dedicated node is a robust solution for incrementing the urgency of claims.
The scheduler can run daily to update the value of pyUrgencyAssignAdjust by 1 for every assignment
in the PendingProcessing workbasket.
Reference: Pega documentation on job schedulers and background processing highlights the use of
job schedulers for periodic updates and batch processing.
Therefore, the correct answer is:
C. Use a job scheduler on a dedicated node to increase the value of pyUrgencyAssignAdjust by 1 for
every assignment that matches the selection criteria.
3.An e-commerce application offers special discounts on a seasonal basis. A business manager is
authorized to maintain these discounts.
Which of the following options is the best possible solution for maintaining the discounts?
A. Create a case that performs the data updates.
B. Use a list landing page without the default data sources.
C. Provide a Harness to update the discount details.
D. Use a list landing page and define the default data sources.
Answer: D
Explanation:
The best solution for maintaining discounts in an e-commerce application by a business manager is:
List Landing Page with Default Data Sources (D):
 2 / 19
https://www.dumpsinfo.com/
A list landing page provides an intuitive interface for business users to view, manage, and update
discount details. By defining default data sources, the data is automatically fetched and displayed,
simplifying the maintenance process.
This approach ensures that business managers can easily access and modify discount information
without needing deep technical knowledge.
Reference: Pega Platform Help on Configuring Landing Pages
4.U+ Bank wants to offer credit cards only to low-risk customers. The customers are divided into
various risk segments from Good to Very Poor. The risk segmentation rules that the business
provides use the Average Balance and the customer Credit Score.
As a decisioning architect, you decide to use a decision table and a decision strategy to accomplish
this requirement in Pega Customer Decision HubTM.
Using the decision table, which label is returned for a customer with a credit score of 240 and an
average balance 35000?
A. Very Poor
B. Fair
C. Good
D. Poor
Answer: B
Explanation:
The decision table provided in the question lists rules for segmenting customers based on their credit
score and average balance.
For a customer with a credit score of 240 and an average balance of 35000:
The first rule checks if the credit score is >= 400 and < 600, and average balance >= 30000. This rule
doesn't apply as the credit score is 240.
The second rule checks if the credit score is >= 200 and < 400, and average balance >= 20000. This
rule applies since the credit score is 240 and average balance is 35000.
According to this rule, the result is "Fair".
Therefore, the label returned for a customer with a credit score of 240 and an average balance of
35000 is "Fair".
5.In the first step in a case type, the user compares data on a form to the data on a customer
account. If the data matches, the case is resolved. If the data does not match, the user advances the
case to update the account.
Management only wants a record of the cases that update an account.
 3 / 19
https://www.dumpsinfo.com/
What two configuration options do you use to implement this requirement? (Choose two.)
A. Add a Persist Case shape after the first step.
B. Apply a when condition to the first step to persist only cases requiring updates.
C. Configure the starting flow to instantiate the case type as a temporary case.
D. Configure the first step to instantiate the case type as a temporary case.
Answer: CD
Explanation:
Configure Temporary Case:
Set the case type to be instantiated as a temporary case in the starting flow. This ensures that the
case is not persisted unless necessary.
Conditional Persistence:
Apply a when condition to determine whether the case should be persisted based on the comparison
results. Only cases that require updates are persisted.
Reference: Pega Academy: Case Type Design and Management.
Pega Documentation: Temporary Case Configuration.
6.Which two actions can yon perform to improve the guardrails compliance score of an application?
(Choose two)
A. Ensure keyed data classes are not mapped to pr-other where possible.
B. Convert activities that only retrieve data to data transforms that invoke data pages.
C.Achieve a higher application level test coverage percentage score.
D. Increase the percentage of unit tests and scenario tests that pass.
Answer: A, B
Explanation:
To improve the guardrails compliance score of an application, you can perform the following actions:
Ensure keyed data classes are not mapped to pr-other where possible:
Pega recommends avoiding the use of the pr_other table for keyed data classes as it can lead to
performance issues and complicate data retrieval.
Instead, ensure that keyed data classes are mapped to dedicated tables. This enhances data
management and improves compliance with Pega’s best practices.
Convert activities that only retrieve data to data transforms that invoke data pages:
Activities in Pega can be complex and harder to maintain. When activities are only used to retrieve
data, it’s better to convert them to data transforms that call data pages.
Data pages are reusable and declarative. They help in maintaining consistency and reducing the
complexity of the application.
Reference: Pega Documentation on Data Classes: Data Classes
Pega Documentation on Data Pages and Data Transforms: Data Pages
7.APP Studio created a data type in the Organization layer for Quote data called BCO-Data-Quote.
How do you help users find rules from this data class when working in APP Studio?
A. Create a BCO-QI-Data-Quote class that inherits from BCO Data-Quote.
B. Use a Data Reference to configure the rules that you need from the BCO Data Quote class.
C. Copy the fields in the data class to the BCO-QT Work- class so all subclasses can see the Quote
rules.
D. Select each rule you want to reuse in the application as a relevant record.
Answer: D
Explanation:
To help users find rules from the BCO-Data-Quote class when working in APP Studio, you should:
Relevant Records Configuration: Mark each rule you want to reuse as a relevant record. This makes
these rules easily discoverable and reusable within APP Studio.
 4 / 19
https://www.dumpsinfo.com/
Implementation in APP Studio: Navigate to the data type and mark the necessary rules as relevant
records. This action ensures that these rules are available in the relevant contexts when users work
within the application.
Reference: Using relevant records in App Studio
8.Which two of the following are best practices when designing an accessible application? (Choose
Two)
A. Avoid key commands because they can conflict with screen readers.
B. Use responsive layouts to help align with device screen size.
C. Use link controls instead of buttons, for readability.
D. Use inline styles for better readability.
Answer: B C
Explanation:
Responsive Layouts:
Using responsive layouts helps ensure that the application aligns well with different device screen
sizes, enhancing accessibility for all users.
Link Controls:
Using link controls instead of buttons can improve readability and accessibility, making it easier for
screen readers and other assistive technologies to interpret the interface.
Reference: Pega best practices for designing accessible applications emphasize the use of
responsive designs and appropriate controls to ensure accessibility.
Therefore, the correct answers are:
B. Use responsive layouts to help align with device screen size.
C. Use link controls instead of buttons, for readability.
9.Items selected by a user need to be copied to a page list property when the user submits the form.
How do you copy the items?
A. Create a validate rule to copy the selected items.
B. Create a declare expression with the page list property as the target.
C. Add a data transform to the flow action as a pre-processing action.
D. Add a data transform to the flow action as a post-processing action.
Answer: D
Explanation:
Data Transform Configuration:
Create a data transform that copies the selected items to the page list property.
Post-Processing Action:
In the flow action, add the data transform as a post-processing action to ensure it executes after the
form submission.
Testing:
Test the form submission to verify that the selected items are correctly copied to the page list
property.
Reference: Pega Academy: Data Transform and Flow Actions.
Pega Documentation: Configuring Post-Processing Actions.
10.you are configuring authentication for a pega web mashup implementation.
How do you ensure the host system origin is trusted?
A. in the authentication service JNDI binding parameters, specify the protocol, host, and port.
B. in the authentication service spaecify the IACAuthverification activity
C. in the application definition, specify the protocol, host, and port
 5 / 19
https://www.dumpsinfo.com/
D. in the content security policy record specify the website as allowed
Answer: A
Explanation:
To ensure the host system origin is trusted in a Pega web mashup implementation:
In the authentication service JNDI binding parameters, specify the protocol, host, and port (Answer
A):
Specifying these parameters ensures that the Pega system recognizes and trusts the origin of the
mashup requests.
Reference: Pega’s mashup authentication documentation outlines the steps to configure the
authentication service to trust specific host system origins by specifying the protocol, host, and port in
the JNDI binding parameters.
11.You are working with BigCo to create an application for insurance quoting. BigCo is a multinational
corporation that has traded on the NASDAQ as BCO. BigCo headquarters is located in the UK, and
the company has division for each geographical location.
You expect the application to contain two types of work: Quote and Policy.
The Quote guides the sales preventative through one or more quote with the customer. Each quote
must be retained by the system and visible to the sales representative and the manager, any data
captured during the quoting process must be available to the Policy case. The Policy represents the
accepted insurance quote.
For the next year, BigCo intends to use the insurance quoting application only for the personal
insurance business in the United Kingdom, Joe the business experts (SMEs) to understand the
quoting process. Joe uses Pega Express to develop the quoting application with the SMEs. Default
application settings are shown in the image.
What two edits do you make to the advanced configuration based on information in the reading
passage? (Choose Two).
A. Deselect ‘’Create demonstration users’’.
B. Edit the Organization name to BCO.’’
C. Edit the Organization name to UK’’
 6 / 19
https://www.dumpsinfo.com/
D. Edit the Division name to ‘’UK’’.
E. Select ‘’Framework’’ as the application structure.
Answer: BD
Explanation:
Edit Organization Name:
Go to the application settings in Pega Express.
Edit the Organization name field to "BCO" to match the company's NASDAQ trading name.
Edit Division Name:
Edit the Division name field to "UK" to reflect the geographical location where the application will be
used initially.
Validation:
Ensure that the changes are saved and reflected in the application's organization settings.
Reference: Pega Academy: Setting Up Your Application.
Pega Documentation: Application Structure and Organization Settings.
12.which two of the following action are required to configure your application to support SSO
authentication?
A. configuring the authentication activity to identify the operator in the system
B. configure the application record to use external authentication
C. configure required mapping between LDAP attributes and operator properties
D. configure model operator records for each access group in your application
Answer: A, C
Explanation:
Configure Authentication Activity:
Go to Records Explorer > Security > Activities.
Create or configure the authentication activity to map the authenticated user to the operator ID in
Pega.
LDAP Attributes Mapping:
Go to Designer Studio > Security > Authentication Service.
Configure the LDAP attributes to map to Pega operator properties, ensuring that attributes like cn, sn,mail, etc., are correctly mapped.
Validation:
Test the Single Sign-On (SSO) setup to ensure the authentication and attribute mappings work
correctly.
Verify that users can log in using SSO and their LDAP attributes are correctly reflected in Pega.
Reference: Pega Academy: Single Sign-On Configuration.
Pega Documentation: LDAP and SSO Configuration.
13.One of the important requirements of Pega Web Mashup is to ensure that the same-origin policy is
following.
From the following options, select two valid configurations. (Choose TWO)
 7 / 19
https://www.dumpsinfo.com/
A. Configuration A
B. Configuration B
C. Configuration C
D. Configuration D
Answer: A, B
Explanation:
For Pega Web Mashup to follow the same-origin policy, both the web application page URL and the
Pega gadget URL must have the same origin, which includes the same scheme (HTTP/HTTPS), host,
and port.
Configuration A and Configuration B:
Web application page URL: https://www.pega.com/MyWebApp/home.html
PEGA Gadget URL: https://www.pega.com/MyWebApp/gadgetA.html
In both configurations A and B, the scheme (https), host (www.pega.com), and port (default HTTPS
port 443) are the same, which adheres to the same-origin policy.
Reference: Pega Web Mashup and Same-Origin Policy
14.You oversee a medium-sized development team, and some of the team members are new to
using Pega Platform.
What are the two most efficient ways to ensure that the rules the team creates adhere to best
practices? (Choose Two)
A. Have new team members create and run automated Pega unit tests against their rules.
B. Run the Tracer tool on each rule the new team members check in to identify an failures In rule
execution.
C. Use the rule check-in approval process to review the changes that the new team members make.
D. Use the Pega Log Analyzer to identify exceptions that are associated with the new team members.
Answer: A, C
Explanation:
Automated Pega Unit Tests:
Having new team members create and run automated Pega unit tests against their rules ensures that
they adhere to best practices and catch errors early.
Rule Check-In Approval Process:
Using the rule check-in approval process allows for a review of changes made by new team
members, ensuring that all rules meet the required standards and best practices.
Reference: Pega best practices for rule management and team collaboration recommend these
approaches to maintain code quality and adherence to standards.
Therefore, the correct answers are:
A. Have new team members create and run automated Pega unit tests against their rules.
C. Use the rule check-in approval process to review the changes that the new team members make.
15.your application uses a page type property named customerinfo to store the customer's first and
last names.
Which two approaches ensure that the customer's first and last names are stored in upper case?
(choose two)
A. creating a vaildate rule that validates the first and last names are in upper case and reference the
vaildate rule in the flow action
B. creating an Edit input rule on the customerinfo property that automatically changes the first and last
names to upper case
C. creating a post-processing data trabsform that converts the values to upper case (if needed) and
reference it in the flow action
D. creating an Edit vaildate rule on the customerinfo property to vaildate that the first and last names
 8 / 19
https://www.dumpsinfo.com/
are in upper case
Answer: B C
Explanation:
Edit Input Rule: Create an Edit input rule on the customerinfo property. This rule will automatically
convert the first and last names to upper case when the data is entered or updated, ensuring
consistency.
Data Transform: Develop a post-processing Data Transform that converts the names to upper case.
This Data Transform can be invoked in the flow action to ensure that the names are converted after
the user submits the form.
Reference: Pega Academy: Configuring Data Transforms and Edit Input Rules
Pega Documentation: Data Transform Rules
16.What two features do activities and functions share? (Choose Two)
A. Ability to be circumstanced
B. Ability to be parameterized
C. Ability to be called directly from a decision table
D. Ability to be versioned
Answer: B, D
Explanation:
Activities and functions in Pega share certain common features which are vital for their flexibility and
maintainability.
Parameterization: Both activities and functions can be parameterized, allowing them to accept input
values when they are invoked. This makes them reusable in different contexts by simply changing the
parameters.
Versioning: Both activities and functions support versioning. This means you can maintain different
versions of an activity or function, which is useful for keeping track of changes and ensuring
compatibility with different versions of the application.
Reference: Pega Platform documentation on activities and functions.
17.You are designing a case life cycle to process fraudulent charge claims. After a list of suspected
fraudulent charge is submitted, the case advances to the processing stage. In the first step of the
process fraud claim process, a seprate child case must be created for each suspected fraudulent
charge.
After all necessary fraudulent charge cases are created, the parent cse advance to the next step
where the customer is notified that their claims are being processed
 9 / 19
https://www.dumpsinfo.com/
choose three actions needed to configure the missing step so that a separate child case is created for
each fraudulent charge selected
A. Add a customer split for each process step to the cse life cycle and configure it ti create child
cases.
B. configure data propagation to map property value between the parent and clid cases.
C. add a create case smart shape to the case life cycle and configure it to be created a case
D. add a create case smart setup to the cse life cycle and configure it to creare child cases
E. use a page list property to store the fraudulent claim items and identify the number if child cases to
create
Answer: A B, E
Explanation:
Custom Split-for-Each Process Step:
In the case designer, add a new step in the Processing stage where you need to create child cases.
Select the "More" option and then "Split for Each".
Configure the split to create a separate child case for each item in the page list property.
Configure Data Propagation:
Ensure that data from the parent case is propagated to each child case.
In the case designer, go to the data propagation settings and map the relevant properties from the
parent case to the child cases.
Use Page List Property:
Create a page list property in the parent case to store the list of suspected fraudulent charges.
Configure the case type to iterate over this page list property when creating child cases.
Reference: Pega Academy: Implementing Case Management.
Pega Documentation: Split-For-Each and Data Propagation.
18.In Pega applications, the Center-out"" business architecture is a fine-tuned software architecture
that you use to deliver customer and business outcomes.
The Center-out approach gives meaningful results fast and sustains the architecture into the future by
avoiding the mistakes of the Top-down and Bottom-up approaches.
Which two of the following statements are true of Pega's Center-out business architecture? (Choose
Two)
A. Using the case management feature to manage, automate, and improve work, you can get every
step in your Microjourney® right.
B. The Pega Live Data virtualization layer automatically extracts the data that you need into customer
data schema.
C. Pega's DX API keeps your front-end channels and back-end logic in sync, not in silos.
D. Pega's DX API maintains the principle of separation of concern and keeps front-end channels and
back-end logic out of sync.
Answer: A, C
Explanation:
Pega's Center-out business architecture involves:
Case Management Feature (A):
Utilizing case management allows organizations to manage, automate,and improve work processes
efficiently. This ensures that every step in the Microjourney®?a complete customer interaction or
process?is executed correctly and consistently.
DX API Synchronization (C):
Pega's DX API helps in keeping the front-end channels and back-end logic in sync. This avoids the
creation of silos, ensuring seamless and consistent interaction across different channels.
Reference: Pega's Center-out Business Architecture Overview
Pega Documentation on Case Management
Pega DX API Documentation
 10 / 19
https://www.dumpsinfo.com/
19.Which of the following Skin rule customizations help satisfy the states requirements?
A. In the Skin rule, configure the importance field for each column included in a repeating layout.
B. In the Skin rule, configure the Column Layout and specify the width of the sidebar on desktops.
C. In the Skin rule, configure the Column Layout and specify how the sidebar appears on tables and
smart phones.
D. In the Skin rule, configure the style for all application field values, paragraphs, and correspondence
records.
Answer: A B C
Explanation:
To satisfy requirements using Skin rule customizations:
In the Skin rule, configure the importance field for each column included in a repeating layout (Answer
A):
Setting the importance field helps manage how columns are displayed on different devices, ensuring
a responsive design.
Reference: Pega’s documentation on Skin rules details how to use the importance field to control
column behavior in responsive layouts.
In the Skin rule, configure the Column Layout and specify the width of the sidebar on desktops
(Answer B):
Defining the column layout and sidebar width helps create a consistent and user-friendly interface on
desktop devices.
Reference: Pega’s Skin rule customization guidelines recommend configuring column layouts to
optimize the UI for different screen sizes.
In the Skin rule, configure the Column Layout and specify how the sidebar appears on tables and
smartphones (Answer C):
Customizing how the sidebar appears on tablets and smartphones ensures that the application is
usable on various devices, enhancing the user experience.
Reference: According to Pega’s UI design best practices, configuring the column layout for different
devices is essential for a responsive design.
20.An organization has two lines of business: selling books for children and reselling college
textbooks. The division selling books for children can use the same basic user interface (UI) as the
division
reselling textbooks with the exception of the payment methods.
How do you apply the Situational Layer CakeTM in this scenario?
A. Place the UI rules in the base layer, and create a new layer for the payment rules for both lines of
business.
B. Place the UI rules and generic payment method rules in the base layer, and create a new layer for
the division-specific payment rules.
C. Place the UI rules in the base layer, and create a parallel base layer for the payments rules.
D. Place the UI rules in the base layer, and create a new layer for the payment rule for each division.
Answer: D
Explanation:
Situational Layer Cake™ Concept: This approach allows for different rules to be applied based on
varying contexts like geography, business unit, or product line, without duplicating logic that remains
consistent across layers.
Base Layer for Common UI Rules: Placing the UI rules in the base layer ensures that common
interface elements are shared across all divisions, promoting reusability and consistency.
New Layer for Division-specific Rules: Creating a new layer for the payment rules specific to each
division allows customization without affecting other parts of the application. This structure enables
 11 / 19
https://www.dumpsinfo.com/
the organization to handle division-specific requirements (like different payment methods) efficiently.
Reference: According to Pega’s best practices for layering, it is advised to place common elements
in a shared layer and division-specific elements in their respective layers. This method optimizes rule
inheritance and specialization (Pega Platform 8.7 Documentation, Layering and Class Structure).
21.A duplicate case search contains two weighted conditions in which a property value in the current
case is compared to the same property value in the existing case. After processing multiple cases
that have two matching data values, duplicate case search does not identify any duplicates.
What two approaches do you take to diagnose the cause? (Choose two.)
A. Verify that there are no more than 4 maximum weighted conditions being tested.
B. Verify that the total weights of the matching conditions match or exceed the threshold.
C. Verify that each of the basic conditions are satisfied.
D. Verify that the case type is instantiated as a temporary case so the case can be cancelled.
Answer: BC
Explanation:
Check Weighted Conditions:
Ensure that the combined weights of the conditions meet or exceed the threshold set for identifying
duplicates. This can be done in the Duplicate Search settings. Verify Basic Conditions:
Confirm that each of the basic conditions (non-weighted) are met for the cases being compared. If
these conditions are not satisfied, the duplicate search will not proceed to evaluate the weighted
conditions.
Configuration Review:
Review the configuration of the duplicate search rule to ensure it is correctly set up and that the
property values being compared are correct.
Reference: Pega Academy: Case Management and Duplicate Detection.
Pega Documentation: Configuring Duplicate Case Search Rules.
22.What is the primary reason for developing a set of unit test 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 train testing resources.
B. Automated testing programmatically ensures quality of rules to maintain the integrity of the
pipeline.
C. Automated testing accelerates the deployment of rules from the development environment to
target environments.
D. Automated testing assists orchestration between automation server and the Execute Test REST
service.
Answer: B
Explanation:
Ensuring Quality with Automated Testing:
Automated testing programmatically ensures the quality of rules, maintaining the integrity of the
CI/CD pipeline. This is crucial for consistent and reliable deployments.
Reference: Pega Lead System Architect documentation emphasizes the importance of automated
testing in CI/CD models to ensure rule quality and pipeline integrity.
Therefore, the correct answer is:
B. Automated testing programmatically ensures quality of rules to maintain the integrity of the
pipeline.
23.A health insurance application receives a weekly feed of customer insurance quotes as CSV files
from each partner company.
 12 / 19
https://www.dumpsinfo.com/
Which of the following options is the best solution to create policy cases based on the received
customer insurance quotes?
A. Use file listener to read the file, and then feed the data from file into a datatype. Configure a Job
scheduler to read the records and place them in a queue to create the cases.
B. Use file listener to read the file, and then invoke the pxCreateTopCase utility to create case
immediately.
C. Use file listener to read the file, and then feed the data from file into a datatype. Invoke the
pxCreateTopCase utility to create case.
D. Use file listener to read the file, and then feed the data from file into a datatype. Configure a job
scheduler to read the records and create cases.
Answer: D
Explanation:
For processing weekly CSV files of customer insurance quotes and creating policy cases:
File Listener and Job Scheduler (D):
Use a file listener to read the incoming CSV file and feed the data into a data type.
Configure a job scheduler to read the records from the data type and create cases. This approach
decouples the file reading and case creationprocesses, allowing for better control and error handling.
Reference: Pega File Listener Configuration Guide
Pega Job Scheduler Documentation
24.XYZ Corporation would like a report that shows the number of employees who have been with the
company more than 20 years, between 15 and 20 years, between 10 and 15 years, between 5 and 10
years, and less than 5 years.
How do you implement this report using Pega?
A. Use a SQL Function.
B. Use a listView with a custom getContent Activity.
C. Use a correlated subreport.
D. Use a Connect-SQL rule.
Answer: A
Explanation:
To create a report that shows the number of employees with varying years of service, the best
approach is to use a SQL function:
SQL Function: Create a SQL function that categorizes the employees based on their years of service.
This function can then be used in the report definition to generate the desired output.
Implementation: Implement the function to return different categories such as more than 20 years,
between 15 and 20 years, etc.
Reference: Creating SQL functions in Pega
25.A recent review of the audit polices log show that a specific IP address has made a large number
of failed login attempts within a few minutes you suspect that it is an internet bot attack.
Select two options you can configure to prevent the bot from accessing you application
A. Enable the CAPTCHA security policy
B. Enable an authentication lockout policy
C. Enable a contect security policy
D. Enable a failed login attempts security event
Answer: A, B
Explanation:
Enable CAPTCHA Security Policy:
Navigate to the security settings in Pega.
Enable CAPTCHA to prevent automated login attempts.
 13 / 19
https://www.dumpsinfo.com/
Authentication Lockout Policy:
Configure the authentication lockout policy to lock accounts after a certain number of failed attempts
within a specified timeframe.
Reference: Pega security documentation on CAPTCHA and authentication lockout policies to prevent
bot attacks.
26.XYZ organization is planning to adopt DevOps practices to automate the deployment process to
ensure chat the features and changes delivered are of high-quality.
What three methods comprise the recommended test automation strategy for your Pega Platform
applications as a part of the DevOps release pipeline? (Choose Three)
A. Identify and configure the right set of test suites during only specific stages of release pipeline.
B. Identify and configure the right set of test suites to test early and often to identify the defects in the
early stages of project life cycle.
C. Identify and configure the right set of test suites that need to run at different stages of release
pipeline.
D. Identify and configure the automation test suite by using Pega Platform features and industry best
practices.
E. Identify and configure the right set of test suites to run only when entire functionality is built,
because running the test suites often is expensive.
Answer: BCD
Explanation:
Identify and configure the right set of test suites to test early and often to identify the defects in the
early stages of project life cycle:
Testing early and frequently helps in identifying and fixing defects at the initial stages, reducing the
cost and effort required for fixing them later.
Identify and configure the right set of test suites that need to run at different stages of release
pipeline:
Different stages of the release pipeline require different sets of tests to ensure comprehensive testing
coverage and quality assurance.
Identify and configure the automation test suite by using Pega Platform features and industry best
practices:
Leveraging Pega Platform's features and adhering to industry best practices ensures that the
automated test suites are effective and reliable.
27.XYZ corp expects managers to create a variety of reports. Those reports are always based on the
same set of classes, but every report does not use every class in the set.
to simplify report creation for managers, you create________________________
A. numerous sample reports showing how to join the classes
B. association rules for the classes in this set
C. a template report with every class join predefined
D. a declare trigger that restricts report class joins to this set
Answer: B
Explanation:
Association Rules: Association rules in Pega are used to define relationships between different
classes. By creating association rules for the set of classes used in reports, you streamline the
process of joining these classes in various reports.
Simplified Reporting: When managers create reports, they can easily include the necessary class
joins by leveraging these predefined association rules, thus reducing complexity and the likelihood of
errors.
Reference: Pega Academy: Building Reports with Association Rules
 14 / 19
https://www.dumpsinfo.com/
Pega Documentation: Association Rules
28.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
Answer: C
Explanation:
Next-Best-Action Configuration:
In Pega, configure the Next-Best-Action strategy to include customer lifetime value as a factor.
Set Thresholds:
Define thresholds for customer lifetime value to determine what constitutes a high-value proposition.
Prioritization Logic:
Implement logic within the strategy to prioritize actions or offers that align with high customer lifetime
value.
Reference: Pega documentation on Next-Best-Action and customer lifetime value considerations.
29.your application connects to two REST services that list details about bank offices.
One REST service uses a postal code as a GET parameter and returns a detailed list of bank officers
in that postal code. the other REST service uses a city name as a GET parameter and returns a
detailed list of back offices in cities with that name. The application uses data pages to cache details
about bank offices. select two options to configure a data page to accept either a postal code or a city
name as a parameter and call the appropriate REST connector. (choose TWO)
A. sourcing data from both rest connectors and using the response data transform to select the
correct data
B. sourcing data from a single REST connector that is circumstanced based on the input parameter
C. sourcing data from each REST connector separately and using a when rule to select the
appropriate data source at run time
D. sourcing data from an activity that evaluates the parameter to select the appropriate REST
connector to call at run time
Answer: C, D
Explanation:
To configure a data page that accepts either a postal code or a city name as a parameter and calls
the appropriate REST connector:
Use separate REST connectors for each parameter type and a when rule to determine which
connector to use based on the input parameter.
Alternatively, use an activity to evaluate the parameter and dynamically select the appropriate REST
connector at runtime.
Reference: Pega documentation on Data Integration > Configuring Data Pages with Multiple Data
Sources
30.In a decision strategy, to use a customer property in an expression, you
A. define the property as a strategy property
B. prefix the property with the keyword Customer
C. use the property as defined without any prefix
D. define Customer page in Pages & Classes
Answer: B
 15 / 19
https://www.dumpsinfo.com/
Explanation:
In a decision strategy, to use a customer property in an expression, you need to prefix the property
with the keyword Customer.
This ensures that the property is correctly identified and retrieved from the customer data page.
31.The application contains a property named claimid. You want to business users to reuse this
property in any new case types they create.
How do you define the claimid property?
A. As a final rule
B. As a case level property
C. As an enterprise class level property
D. As a relevantrecord
Answer: C
Explanation:
Handling reference data from external systems efficiently is crucial to minimize system resource
usage.
Use the System of Record (SOR) data access pattern to populate the page contents (Answer C):
The SOR pattern ensures that the application fetches data directly from the external system when
needed, rather than storing and maintaining copies of the data. This approach minimizes memory
usage and keeps the data up-to-date.
Reference: Pega’s documentation on data access patterns recommends using the SOR pattern for
scenarios where up-to-date data is required, and minimizing resource consumption is critical. Use the
Snapshot data access pattern to populate the page contents (Answer D):
The Snapshot pattern captures a specific state of data at a point in time. This approach is useful for
reference data that does not change frequently, reducing the need for repeated data fetching and
conserving system resources.
Reference: According to Pega’s best practices for data management, the Snapshot pattern is ideal
for data that remains relatively static, helping to optimize resource utilizatio
32.A System Architect wants to save the results from running a data page as an automated test. The
System Architect reports that the system cannot save the test definition.
What is the reason?
A. The Pega-AutoTest agent is configured, but not running.
B. The data page is checked out or in private edit mode.
C. A ruleset to store test cases is not configured.
D. The System Architect lacks the automated unit test privilege.
Answer: C
Explanation:
Test Cases Ruleset Configuration:
If the system cannot save the test definition, it is likely due to a ruleset for storing test cases not being
configured. Test cases need to be stored in a specific ruleset that is configured for this purpose.
Reference: Pega documentation on automated testing and unit test cases emphasizes the need for
configuring a ruleset to store test cases.
Therefore, the correct answer is:
C. A ruleset to store test cases is not configured.
33.A Lead System Architect (LSA) plays a significant role at every level of data modeling by
collaborating with other stakeholders.
Which two of the following statements about data model design are true? (Choose Two)
 16 / 19
https://www.dumpsinfo.com/
A. The Database Administrator identifies the data source, performs data collection, and creates a
logical group of elements by using inheritance or composition.
B. The Business Architect is the final authority in choosing the right schema and designing the
database table structure.
C. Data Analysts and Data Architects perform data collection, data design, choose the correct layer
for elements, and create a logical group of elements by using inheritance or composition.
D. Subject Matter Experts identify the data source, understand the flow of data, and identify the
proper data type for the data elements.
Answer: C, D
Explanation:
Data Analysts and Data Architects:
They perform data collection and design, choose the correct layer for elements, and create a logical
group of elements using inheritance or composition.
This aligns with best practices in data model design where specialized roles handle the technical
aspects of data modeling.
Subject Matter Experts (SMEs):
SMEs identify data sources, understand the flow of data, and determine the proper data type for data
elements.
Their expertise in the business domain ensures that the data model accurately reflects business
requirements and processes.
Reference: Pega Lead System Architect documentation on roles in data modeling emphasizes
collaboration between various stakeholders, including Data Analysts, Data Architects, and SMEs.
Therefore, the correct answers are:
C. Data Analysts and Data Architects perform data collection, data design, choose the correct layer
for elements, and create a logical group of elements by using inheritance or composition.
D. Subject Matter Experts identify the data source, understand the flow of data, and identify the
proper data type for the data elements.
34.Users are spending excess time researching duplicate cases to determine whether to process or
resolve the cases.
Which two options allow you to reduce the number of potential duplicate cases? (Choose two.)
A. Decrease the weights of the weighted conditions.
B. Increase the weights of the weighted conditions.
C. Increase the weighted condition sum threshold.
D. Decrease the weighted condition sum threshold.
Answer: BC
Explanation:
Increase Weights of Conditions:
Adjust the weights of the conditions to make them more significant in the duplicate detection process.
This can help in reducing false positives.
Adjust Threshold:
Increase the threshold for the weighted condition sum to ensure that only cases with a higher
likelihood of being duplicates are flagged.
Reference: Pega Academy: Duplicate Case Management.
Pega Documentation: Configuring Duplicate Detection Rules.
35.A queue processor is configured with the value of the Max attempts field is 4, the value of the
Initial delay field is 2 minutes and the the value of the Delay factor field is 2 for processing retries.
What is the delay between the second and third attempt, assuming each previous attempt fails?
 17 / 19
https://www.dumpsinfo.com/
A. 8 minutes
B. 4 minutes
C. 2 minutes
D. 6 minutes
Answer: B A
Explanation:
Max Attempts: The maximum number of retry attempts set is 4.
Initial Delay: The initial delay before the first retry attempt is 2 minutes.
Delay Factor: The delay factor is set to 2, which means the delay doubles with each retry.
Calculating Delays:
First attempt fails, delay before second attempt = Initial delay = 2 minutes.
Second attempt fails, delay before third attempt = Initial delay * Delay factor = 2 minutes * 2 = 4
minutes.
Third attempt fails, delay before fourth attempt = 4 minutes * Delay factor = 4 minutes * 2 = 8 minutes.
Delay Between Attempts: The question specifically asks for the delay between the second and third
attempt, which is calculated as 8 minutes.
Reference: Pega documentation on queue processor configuration.
Pega Platform 8.x help files related to processing retries and delay factors.
36.A health plan application includes a process for surgical procedure requests. Currently, there is an
evaluation subprocess in which a physician reviews the diagnosis and enters the recommended
procedure and its urgency. The request then advances to a medical director who analyzes the
feedback and approves the appropriate procedure. The health care organization has created a new
requirement, which states that three physicians can perform the evaluation independently. Only two
evaluations are necessary to advance the case to the medical director.
In order to allow the three physicians to review the orders in parallel, how would you configure the
process?
A. Add a Split Join shape, add a list of physicians, and call the surgical procedure request process.
 18 / 19
https://www.dumpsinfo.com/
B. Add a Split For Each shape, add a list of physicians, and call the evaluation process.
C. Add a Split Join shape, add a list of physicians, and call the evaluation process.
D. Add a cascading approvals shape that is called by the evaluation subprocess.
Answer: B
Explanation:
To allow three physicians to review the orders in parallel, you need to use the "Split For Each" shape.
This shape enables parallel processing for each item in a list, such as the list of physicians.
Understanding Split For Each Shape in Pega:
The "Split For Each" shape allows you to create instances of a subprocess for each item in a
specified list. This means each physician can independently review and evaluate the surgical
procedure requests simultaneously.
Configuration Steps:
Step 1: Create a list of physicians who will be performing the evaluations.
Step 2: Add a "Split For Each" shape to the process flow.
Step 3: Configure the "Split For Each" shape to iterate over the listof physicians.
Step 4: Define the evaluation subprocess to be called for each physician.
Step 5: Ensure that each physician's evaluation subprocess is independent of the others.
Advantages of Using Split For Each:
This approach allows all three physicians to perform their evaluations simultaneously, reducing the
overall processing time and ensuring that the process can advance as soon as two out of three
evaluations are completed.
Reference: Pega Documentation on Split For Each shape provides detailed steps on how to configure
and use this shape in your process flows.
Powered by TCPDF (www.tcpdf.org)
 19 / 19
https://www.dumpsinfo.com/
http://www.tcpdf.org