Pass the Pegasystems Certified Lead System Architect (CLSA) PEGACPLSA23V1 Questions and answers with CertsForce

Viewing page 1 out of 2 pages
Viewing questions 1-10 out of questions
Questions # 1:

You are a Pega developer working on an insurance application. The application needs to manage different types of insurance policies such as car insurance, home insurance, and life insurance. Each type of insurance policy has some common attributes (policy number, policyholder name, and premium amount), but also has some unique attributes (such as vehicle details for car insurance, property details for home insurance, and beneficiary details for life insurance). Which one of the following approaches to handling this scenario would be most appropriate in a Pega application?

Options:

A.

Create a single class for all types of insurance policies and dynamically add or remove attributes as needed.


B.

Create a single class for all types of insurance policies and define all possible attributes.


C.

Create a base class for the insurance policy for the common attributes, and then create derived classes for each type of insurance policy with their unique attributes.


D.

Create a separate class for each type of insurance policy and then define the common attributes in the new class.


Expert Solution
Questions # 2:

ABC Hospitals wants to enhance the management of patient appointments across various departments and medical professionals. Each appointment request must be intelligently assigned to the appropriate specialist based on the type of medical issue and their availability, ensuring prompt service to patients. Which of the following approaches is the most effective for meeting this requirement?

Options:

A.

Define medical professionals as operators in the application. Develop a custom routing utility that selects the best available medical professional based on the given criteria and promptly assigns patients for efficient resolution.


B.

Define medical professionals as operators in the application, and then specify their required department, skillset, and availability calendar. Use the Work-.ToLeveledGroup routing utility for this purpose.


C.

Define medical professionals as operators in the application. Create a decision table that includes the necessary department and skill information. Associate each record inthe table with a specific medical professional. Use decision table-based routing to address this requirement.


D.

Define medical professionals as operators in the application, and then specify their required department, skillset, and availability calendar. Use the Work-.ToSkilledGroup routing utility for this purpose.


Expert Solution
Questions # 3:

ABC is an insurance company that provides quotes to its customers. Customers submit insurance quote requests through the ABC company website. The insurance workflow exposes a web embed to the ABC company website; the web embed uses custom bearer authentication. What are the primary uses of a custom bearer token? (Choose Two)

Options:

A.

To authorize the level of access that a user has to a resource.


B.

To encrypt data sent over the network.


C.

To authenticate a user for multiple requests over a period of time.


D.

To authenticate a user for a single request.


Expert Solution
Questions # 4:

ABC Retail Inc. wants a report that illustrates the distribution of customer loyalty based on their shopping history. ABC wants to see the number of customers who have beenshopping with the company for more than 10 years, between five and 10 years, between two and five years, and less than two years. Suggest the most optimistic way of separating and displaying the shopping history using a report.

Options:

A.

Use a function alias.


B.

Use a correlated subreport.


C.

Use a Rule-Obj-ListView with a custom getContent activity.


D.

Use a Connect-SQL rule.


Expert Solution
Questions # 5:

U+ Bank has a customer service application that processes customer complaints. Now, after three years in production, the operations manager needs historical reports on resolved cases. The reports should be sent in near real-time. The data warehouse has exposed a REST API to receive the data, and the reports are then generated from the data warehouse. Which two of the following options could you use to create an ideal design solution for posting the data to the data warehouse? (Choose Two)

Options:

A.

Read data with data flows, which source data by using a dataset and then output the data to a utility that synchronously posts the data to the data warehouse. For in-flight cases, on resolution of the case, configure the system to post the data to the data warehouse over REST.


B.

Prepare an extract rule and extract the data of already-resolved cases, and then load it into the data warehouse for reporting. For in-flight cases, on resolution of a case, configure the system to post the data to the data warehouse over REST.


C.

Read data with data flows, which source data by using a dataset and then output the data to a utility that posts the data to the queue processor, which then posts the data tothe data warehouse over REST. For in-flight cases, on resolution of a case, reuse a queue processor that you created.


D.

Run a one-time utility that browses all the resolved-cases data, and then asynchronously posts the data to the data warehouse. For in-flight cases, on resolution of a case, configure the system to synchronously post the data to the data warehouse over REST.


Expert Solution
Questions # 6:

Which two of the following business use cases require the case-instance-first design pattern for implementation in Pega applications? (Choose Two)

Options:

A.

In a sports competition management system, users must be assigned to an existing sports competition case to provide a final score.


B.

In an event management system, event schedule preparation involves an approval process after a monthly schedule calendar is prepared.


C.

In a healthcare management system, a patient’s medical history is captured before processing diagnostic needs and scheduling an appointment with a specialist.


D.

In an e-commerce platform, customers can browse products and add them to their cart prior to proceeding to the checkout and billing process.


Expert Solution
Questions # 7:

Hospital XYZ wants to analyze patient data and identify those at high risk of readmission. The hospital has patient data stored in an Electronic Health Record (EHR) system, and a separate system for hospital admission records. Which two of the following are key advantages of using a Data Flow over a Queue Processor for analyzing patient data in this scenario? (Choose Two)

Options:

A.

Data Flow can directly access data from multiple systems.


B.

Data Flow can handle larger volumes of data.


C.

Data Flow can prioritize tasks based on urgency.


D.

Data Flow can process data in real-time.


Expert Solution
Questions # 8:

ABC organization has a case management application where users handle customer complaints. Each complaint case contains various details, including the following attributes: Case title: A brief description of the complaint. Creation date: The date when the complaint was registered. Complaint name: The name of the person who filed the complaint. Complaint details: A more detailed description of the issue. ABC wants to allow certain users (for example, managers and supervisors) to gain insights into complaint cases even if they do not have full read access. What is the primary purpose of the ABAC Discover policy in the case management application?

Options:

A.

To reveal sensitive details about complaint cases to managers and supervisors.


B.

To restrict access to complaint cases for all users.


C.

To prevent any user from accessing the case dashboard.


D.

To allow managers and supervisors to view essential case information.


Expert Solution
Questions # 9:

An online streaming service faces performance issues because of a high volume of user data stored in the database. As a Lead System Architect, what are the two best corrective actions that you suggest for enhancing application performance? (Choose Two)

Options:

A.

Implement horizontal and vertical database partitioning strategies and replication to distribute the load effectively.


B.

Implement archival of cases, case history, and associated media files, and then purge the data based on usage patterns and business criteria.


C.

Schedule regular database defragmentation sessions in collaboration with the Database Administrator.


D.

Conduct database indexing on critical tables and optimize columns to improve query performance.


Expert Solution
Questions # 10:

In a flight schedule management application, the initiation of a scheduled flight case triggers both pre-flight check and flight catering service processes. These processes require access to flight information, such as flight number, cabin class, number of seats, departure date and time, while also maintaining process-specific data elements. Which one of the following options best describes the optimal data model for meeting this requirement?

Options:

A.

Set Schedule Flight as the parent case type, with the triggered processes as child case types. Store flight data within the Schedule Flight case. This data will then bepropagated to the child cases upon their creation.


B.

Set Schedule Flight as the parent case type, with the triggered processes as child case types. Place flight data in the travel management enterprise layer and create data classes specific to each child case type, inheriting directly from the travel management enterprise layer.


C.

Set Schedule Flight as the parent case type, with the triggered processes as child case types. Place flight data within the Schedule Flight class and develop data classes specific to each child case type.


D.

Set Schedule Flight as the parent case type, with the triggered processes as child case types. Place flight data within the work pool class, allowing all three case types to inherit properties from the work pool class.


Expert Solution
Viewing page 1 out of 2 pages
Viewing questions 1-10 out of questions