Get Prepared for Your PEGACPLSA88V1 Exam With Actual Pegasystems Study Guide!
Pass Your Next PEGACPLSA88V1 Certification Exam Easily & Hassle Free
The PEGACPLSA88V1 exam is a challenging and comprehensive exam that tests the candidate's ability to design and develop enterprise-level Pega applications. PEGACPLSA88V1 exam covers various topics such as application design, data modeling, integration, and security. PEGACPLSA88V1 exam also covers advanced topics such as performance and scalability, governance, and best practices.
The PEGACPLSA88V1 exam is a challenging exam that requires extensive preparation and knowledge of Pega technology. PEGACPLSA88V1 exam consists of 60 multiple-choice questions and must be completed within 90 minutes. PEGACPLSA88V1 exam is computer-based and can be taken at any Pearson VUE testing center worldwide. Successful candidates who pass the exam will receive the Certified Pega Lead System Architecture (CPLSA) certification, which is recognized globally as a mark of excellence in Pega technology.
NEW QUESTION # 52
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)
- A. Configuration D
- B. Configuration A
- C. Configuration B
- D. Configuration C
Answer: B,C
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
NEW QUESTION # 53
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 a summary report that leverages sub reports for each month.
- B. Configure an agent to record monthly case status in a separate table and report on that table.
- C. Configure a Declare index to record case data to a separate table.
- D. Configure an activity to generate the data in the clipboard and report using a custom section.
Answer: D
NEW QUESTION # 54
when a customer submits a credit card dispute, the application connects to an external service to retrieve all transactions made by the customer. the external service returns transactions ordered by date of transaction, in a descending, chronological order. when a case worker reviews the dispute, the application displays the 10 most recent transactions.
if the case worker does not see the disputed transaction in the list, the case worker can search for additional transactions. the case. the case worker can filter search results on transaction date, the transaction amount or the merchant name the search results display the 10 most recent transactions that satisfy the filter criteria. the case worker cannot paginate through the results.
how do you configure the data page to satisfy all the requirements in the scenario?
- A. create a thread-level data page with parameters that uses a connector as it source.
- B. create a thread-level data page that uses a report definition as its source.
- C. create a node-level data page that uses a connector as its source.
- D. create a node-level data page with parameters that uses a report definition as its source
Answer: A
NEW QUESTION # 55
Select two ways for queuing an item for a queue processor. (Choose Two.)
- A. Use the Queue for -agent method
- B. Use Run in Background smart shape
- C. Use the Queue-for-processing method
- D. Use Utility smart shape
Answer: B,C
NEW QUESTION # 56
A developer has set the Rule security mode on the access group to Deny. Select the reason for this setting.
- A. Disable standard privileges providing administrator access to the application (for example AllFlows and AllFllowActions).
- B. Require Access of Role to Object rules be specified for each layer in the class hierarchy and not inherited from parent classes.
- C. Deny access to a rule if the privilege of the user is not defined in an Access of Role to Object.
- D. Ensure that all rules with the option of specifying a privilege have a privilege. Only users with the privilege can execute the rules.
Answer: D
Explanation:
Setting the Rule security mode on the access group to Deny ensures that:
Privileged Access Only: It enforces that all rules which can specify a privilege must have a privilege assigned. This ensures that only users with the appropriate privileges can execute these rules.
Security Compliance: This setting helps in maintaining strict security compliance by not allowing default access to rules without explicit privilege checks.
Reference:
Pega Rule Security Mode
NEW QUESTION # 57
A health insurance application receives a weekly feed of customer insurance quotes as CSV files from each partner company. 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 creation processes, allowing for better control and error handling.
Reference:
Pega File Listener Configuration Guide
Pega Job Scheduler Documentation
NEW QUESTION # 58
U+ Bank currently uses a Pega Platform'" application to automate its internal operations. The bank wants to add independent tax processing functionality to its application. This work should be routed to tax consultants in the application.
To support this new feature, the bank has appointed country-specific tax consultants because tax processing is handled differently in different countries.
Which one of the following options is the best approach to add tax processing to the bank's existing Pega Platform application?
- A. Create a country-specific tax process for tax assessment that is routed to the appropriate tax consultant.
- B. Create a tax case type and use case type specialization by country, each with its own process, to be routed and assigned to the appropriate tax consultant.
- C. Create a tax case type, then circumstance the required processes and routing utilities by using the country property.
- D. Create a country-specific tax assessment application that is built on the existing Pega Platform application.
Answer: B
Explanation:
Tax Case Type and Specialization:
Create a new tax case type within the Pega Platform application to handle the independent tax processing functionality.
Utilize case type specialization to define different processes for each country. This means creating specialized versions of the tax case type based on the country property.
Country-specific Processes:
Each specialized tax case type will have its own processes tailored to the specific tax regulations and requirements of the respective country.
This allows for the flexibility to handle different tax processing rules and ensures compliance with country-specific tax laws.
Routing and Assignment:
Configure routing rules to assign the tax cases to the appropriate tax consultants based on the country.
Use decision tables or decision trees to determine the correct tax consultant for each case, ensuring that the case is handled by a consultant with the relevant expertise.
Efficiency and Maintenance:
By using case type specialization, the application maintains a clear and organized structure where each country's tax processing logic is encapsulated within its own specialized case type.
This makes the system easier to maintain and update, as changes to tax processing rules can be made within the specific country's specialized case type without affecting others.
Reference:
Pega Academy, "Specializing a Case Type" module: Covers the concepts and implementation of case type specialization.
Pega Community Article on "Case Specialization": Provides insights into how to implement and manage case specialization effectively.
NEW QUESTION # 59
your application queues items for a standard agent a case has not been updated as expected by the agent. on the system queue management landing page the queue status for each item us available.
what two issues can be identified in the system queue management landing page using the status?
(choose two)
- A. the agent is not configured for optimistic locking.
- B. the agent failed when processing the item.
- C. the agent schedules were disabled.
- D. the agent is scheduled to process the item in the future.
Answer: B,D
Explanation:
* Queue Status "Available": When the queue status for an item is "Available," it indicates that the item is ready for processing but has not yet been picked up by the agent.
* Failed Processing: If the agent attempted to process an item but failed, it can be reflected in the status. The item remains in the queue, and the system logs may indicate the failure reason.
* Scheduled Processing: The status "Available" can also mean that the item is scheduled for future processing based on the agent's schedule.
Reference:
Pega Academy: System Queue Management
Pega Documentation: Understanding Agent Status and Queue Management
NEW QUESTION # 60
which two statements are correct with regard to inbound email processing? (choose two)
- A. custom configuration is required to handle automatic reply and delivery status notifications.
- B. an incoming email reply is liked to its original case by the case ID in the subject of the email.
- C. when creating a case from an email using the standard service activity, email attachments are automatically added as case attachments.
- D. if an email service executes an action, such as an approval, and the case is locked the email is queued and retried
Answer: B,C
Explanation:
Regarding inbound email processing:
An incoming email reply is linked to its original case by the case ID in the subject of the email (Answer A):
Reference:
When creating a case from an email using the standard service activity, email attachments are automatically added as case attachments (Answer B):
NEW QUESTION # 61
A healthcare company decides to use Pega Foundation for Healthcare (PFH) for all of their new Pega Platform"" applications, because the data model that PFH provides can accommodate all of their needs. However, some new fields and new data classes need to be created to suit the company's specific processes.
What is the recommended approach to extending the foundation data model?
- A. Extend the provided data model by using pattern inheritance. Direct inheritance can be used to extend application-specific behavior.
- B. Create a copy of the foundation data model in the Pega Platform application. Then use pattern inheritance to extend the copied data model.
- C. Extend the provided data model by using direct inheritance. Pattern inheritance can be used to extend application-specific behavior.
- D. Create a copy of the foundation data model in the Pega Platform application. Then use direct inheritance to extend the copied data model.
Answer: A
Explanation:
To extend the Pega Foundation for Healthcare (PFH) data model:
Direct Inheritance for Extension (B):
Use direct inheritance to extend the foundation data model provided by PFH. This ensures that the core data model remains intact while allowing for the addition of new fields and data classes specific to the company's needs.
Pattern Inheritance for Behavior (B):
Utilize pattern inheritance to extend application-specific behavior. This allows for customization and the addition of application-specific logic while maintaining a clear separation from the core data model.
Reference:
Pega Foundation for Healthcare Implementation Guide
Pega Inheritance Models Documentation
NEW QUESTION # 62
Which of the following Skin rule customizations help satisfy the stated requirements?
- A. Configure the importance field for each column included in a repeating layout.
- B. Configure the style for all application field values, paragraphs, and correspondence records.
- C. Configure the Column I ayout and specify how the sidebar appears on tablets and smart phones.
- D. Configure the Column Layout and specify the width of the sidebar on desktops.
Answer: A
Explanation:
Explanation
You are designing an accessible Pega application for French and English-language users who require assistive technologies. The application must be able to run from desktop, tablet, and mobile phone browsers. Also, several screens require the ability to save changes and refresh the screen.
NEW QUESTION # 63
An application uses LDAP authentication and create operators dynamically based on a model operate recorded select and move the three options needed to complete the configuration to configuration column
Answer:
Explanation:
Explanation:
Text Description automatically generated with low confidence
NEW QUESTION # 64
In an e-commerce application that is built on Pega Platform, a data type named Order stores the order-related information. as shown in the following table:
An operations manager wants to view a report at the end of each day. If the number of items ordered in a category is greater than 5, the report displays the number of items in that category that are ordered during the day.
Which option do you use to implement the requirement?
- A. A report with a custom SQL function on Quantity and filter condition Sum (Quantity) > 5 that the system applies before aggregation.
- B. A report with a summarize function on Quantity and filter condition Sum (Quantity) > 5 that the system applies before aggregation.
- C. A report with a custom SQL function on Quantity and filter condition Sum (Quantity) > 5 that the system applies after aggregation.
- D. A report with a summarize function on Quantity and filter condition Sum (Quantity) > 5 that the system applies after aggregation.
Answer: D
Explanation:
Summarize Function with Filter Condition After Aggregation:
Using a report with a summarize function on Quantity and a filter condition applied after aggregation ensures that the report accurately displays categories with more than 5 items ordered.
Reference:
Pega documentation on report definitions and aggregation functions outlines how to apply filters after summarizing data to meet reporting requirements.
Therefore, the correct answer is:
C . A report with a summarize function on Quantity and filter condition Sum (Quantity) > 5 that the system applies after aggregation.
NEW QUESTION # 65
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. What two configuration options do you use to implement this requirement? (Choose two.)
- A. Configure the starting flow to instantiate the case type as a temporary case.
- B. Configure the first step to instantiate the case type as a temporary case.
- C. Apply a when condition to the first step to persist only cases requiring updates.
- D. Add a Persist Case shape after the first step.
Answer: A,B
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.
NEW QUESTION # 66
You are managing distributed geographically dispersed development teams A B and C Team A is ready to merge changes into their development environment to make those changes available to Team B's and Team C's environments To ensure that all development teams are working with the latest version of the shared rulebase. select and move the below tasks to the Task List Order column and place them in the correct order
Answer:
Explanation:
1 - Team A publishes the branch to the system of record.
2 - The system of record triggers the job on the automation server.
3 - Automation server requests conflict detection.
4 - The automation server merges the branch to the system of record.
5 - Teams B and C import the application rules within their local environment.
NEW QUESTION # 67
Review the following classes and properties:
An embedded list property is defined In the MyCo-Lending-Work ProcessLoan class.The embedded list property is named .Loans.The data type is MyCo-Data Loan.
Which three of the following statements are valid in this situation? (Choose Three)
- A. A car loan application can extend MyCo Data-Loan Auto without affecting a sum performed against .Loans().Amount.
- B. All pages within the .Loans embedded list must be the same class, either MyCo-Data-Loan-Auto or MyCo-Data-Loan- Mortgage.
- C. A rule in MyCo-Data-Loan-Mortgage can only be referenced through .Loans, if the rule is also defined in MyCo-Data-Loan.
- D. At design time, the system issues a warning since it is poor practice to define an embedded list using an abstract data type class.
- E. The pxObjCiass of any page in the .Loans embedded list can be changed at run time and does not need to be the same class.
Answer: A,B,E
Explanation:
When defining an embedded list property with a specific data type:
Changing pxObjClass at Runtime (A):
The pxObjClass of any page within the .Loans list can be modified at runtime. This provides flexibility to change the class of individual pages if needed.
Inheritance and Calculation (C):
Extending the data model, such as a car loan application extending MyCo-Data-Loan-Auto, does not impact aggregate functions like sum performed on properties (e.g., .Loans().Amount).
Class Consistency within the List (E):
All pages within the .Loans list must adhere to the same class type, ensuring consistency and correct behavior of operations on the list.
Reference:
Pega Data Modeling Guidelines
Pega Clipboard and Page Management Documentation
NEW QUESTION # 68
How do you begin your research to diagnose the cause of the reported performance issue?
- A. Download the alert log file from each node and analyze the contents in the Pega Log Analyzer.
- B. Review guardrail warnings in the development environment to determine if any rules with warnings moved to production.
- C. Look at the performance profile and DB Trace out put from each node.
- D. Observe the cluster and node status on the Enterprise Health Console.
Answer: D
Explanation:
Explanation
Six weeks after you deliver your application to production, your users report that the application slows down in the afternoon. The application is almost completely unresponsive for some users shortly after
3:00 P.M. Other users do not experience this problem
until later in the day.
You do not have access to the Production environment, but you do have access to AES. The production environment has three nodes and a load balancer.
You need to resolve this issue because a new division of the organization will start using the application next month.
NEW QUESTION # 69
What are two valid reasons for defining a case type within a case type-specific ruleset? (Choose two)
- A. Case-specific rulesets make it easier to rebase ruleset versions.
- B. Each branch ruleset can be associated to case-specific user stories.
- C. The case type might be converted to a component application in the future.
- D. The ruleset can be added to the ruleset stack for multiple applications.
Answer: B,C
Explanation:
Defining a case type within a case type-specific ruleset provides several advantages:
Branch Ruleset Association: By associating each branch ruleset with case-specific user stories, you can better manage development and testing. This allows for more targeted reviews and testing, ensuring that changes are isolated and easily traceable.
Component Application Conversion: If there is a possibility that the case type might be converted to a component application in the future, having a case-specific ruleset simplifies the process. It allows the case type to be more easily packaged and reused across different applications.
NEW QUESTION # 70
A call center uses Pega Customer Service. Where does Pega Customer Service fit into the enterprise architecture?
- A. Pega Customer Set vice is the customer and account enterprise service bus.
- B. Pega Customer Service is the new customer onboarding system.
- C. Pega Customer Service is the customer interaction system of record.
- D. Pega Customer Service is the billing and reporting system of record.
Answer: C
Explanation:
Pega Customer Service functions as the customer interaction system of record within the enterprise architecture. It manages customer interactions and provides a comprehensive view of customer information and history, facilitating efficient and effective customer service.
Reference:
Pega Customer Service: Customer Interaction Management
Pega System of Record: Defining System of Record
NEW QUESTION # 71
Review the following classes and properties:
A page list property is defined at the class group MyCo-Lending-Work. The property name is .Loans and it is defined as being a page List of class MyCo-data-Loan.
Which three statements are valid? (Choose Three.)
- A. At design time, the system provides a warning since it is not a best Loans practice a page list with an abstract class.
- B. At run time, Loans(1) cloud be of class MyCo-data-Loan-Auto while .Loan (2) is of class MyCo-data Loan Mortgage.
- C. At run time pages o . Loans can be of either MyCo-data-Login Auto or Myco-Data Loan Mortgage but all pages must be the class.
- D. At run time, a specialized rule in MyCo-Date-Loan Mortgage can be reference through-loans only if referenced in MyCo-Data-Loan
- E. At design time, an architect uses a data warning since it is not a best practice to define a page list of an embedded page at run time.
Answer: A,C,E
NEW QUESTION # 72
You add database connection information to prconfig.xml and want to encrypt the password in the connection information how do you encrypt the password?
- A. create an encrypted password with passGen and replace the unencrypted password in pconfig.xml
- B. create an encrypted password with PR cipherGenerator and reference the external system
- C. enter a password in an application ID instance and reference the external system
- D. create an encrypted keyring password and replace the unencypted password in prconfig.xml
Answer: D
NEW QUESTION # 73
What advantage does a rule-utility-function have over a rule-obj-activity?
- A. Ability to be circumstanced
- B. Ability to be used to enforce security
- C. Ability to be saved multiple rulesets
- D. Ability to be directly called from a decision table
Answer: D
NEW QUESTION # 74
You imported a rule-admin-product (RAP) file that contains new features into a user acceptance testing(UAT) environment. Select the option that ensures basic functionality behaves as expected before inviting users to start acceptance testing.
- A. Create an integration test suite. Run the test suite using the Execute Test REST service
- B. Create a regression test suite. Run the test suite using the automation server.
- C. Create a smoke test suite. Run the test suite using the pre-import process.
- D. Create an ad hoc test suite. Run the test suite using the post-import process.
Answer: B
NEW QUESTION # 75
An organization wants to know about failed authentication attempts to gain access to a Pega Platform application. How do you log information about unauthorized access or failed login attempts?
- A. Add a utility to the session management operations.
- B. Enable the security audit and get the information related to failed login.
- C. Enable the content security policy and generate the required reports of failed login.
- D. Integrate with third-party security tools to find the failed login.
Answer: B
Explanation:
Enable Security Auditing:
Navigate to the Pega Platform's security settings.
Enable security auditing by configuring the security policies.
This setting will track and log any unauthorized access attempts and failed login attempts.
Configure Audit Log Settings:
Go to the "Security Policies" section under the "System" category in the Dev Studio.
Ensure that logging for authentication events is enabled. This includes both successful and failed login attempts.
Generate Reports:
Utilize the built-in reporting capabilities of Pega to create custom reports.
These reports can be configured to display logs of failed login attempts, providing visibility into unauthorized access attempts.
Reference:
Pega Platform User Guide on Security Policies
Pega Academy Course on Security and Access Control
NEW QUESTION # 76
Finco corporation uses pega to perform the majority of the mortgage underwriting tasks.
After gathering the initial data, the mortgage case pauses and waits for the credit report The credit report is a separate case, located in the same class group as the mortgage case, and typically resolves within 24 hours. After the credit report is complete, the application routes the mortgage case to the specialist.
Which of the following options is the optimal solution to route the mortgage case to the specialist when the credit report is complete?
- A. Insert a credit report assignment in the mortgage flow with a SLA to check the status of the credit report case and call the ResumeFlow activity when the credit report case completes.
- B. Add a wait shape to the mortgage flow with a case dependency to advance the mortgage flow to the next assignment when the credit report case is resolved.
- C. Include a split join shape in the mortgage flow to include the credit report flow. Use the All option on the split join shape to ensure the credit report is complete before routing to the specialist.
- D. Modify the credit report flow to move the mortgage case to the specialist. The application routes the assignment to the specialist with the least amount of work.
Answer: B
NEW QUESTION # 77
......
Ace PEGACPLSA88V1 Certification with 240 Actual Questions: https://www.testsimulate.com/PEGACPLSA88V1-study-materials.html