Summer Special Limited Time 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: exc65

As an LSA developing a Pega application for an online grocery store, you are tasked with enabling customers to navigate through various categories such as "Dairy," "Confectionery," "Frozen Food," and "Soft Drinks." Each category contains at least 10 sub-categories, with the workflow varying depending on the selected sub-category. What is the best method of populating the categories and sub-categories and retrieving the related information from the grocery store's database?

A.

Implement a data page that accepts either a Category or Sub-category as a parameter. Based on the parameter type, the required information is retrieved and displayed in the subsequent layouts.

B.

Implement a data page for Sub-categories. Load Categories by default upon startup. Populate Sub-categories after a Category is selected, using a Sub-category data page that takes the Category as a parameter.

C.

Implement data pages for Categories and Sub-categories. Populate Sub-categories after a Category is selected, using a Sub-category data page that takes the Category as a parameter.

D.

Implement a data page that takes the Sub-category as a parameter. Based on the Sub-category type, the necessary information is retrieved and shown in the subsequentpf layouts.

Which three of the following options come under security administration events while auditing your Pega application? (Choose Three)

A.

Changes to security authentication policies.

B.

Changes to dynamic system settings.

C.

Changes to attribute-based access control policies and policy conditions.

D.

Changes to operator records.

E.

Changes to report definition filters.

As a Lead System Architect, you are developing a solution for enrolling students into culinary arts training sessions that includes two distinct specializations: Baking and Confectionery. Unique rules and business logic govern each specialization. Which of the following specialization techniques is considered most appropriate in this Pega implementation?

A.

Build separate classes for Culinary, Baking, and Confectionery, and position all three classes at the same hierarchical level, with common rules in a work pool class and specialized rules in their respective classes. This approach to class specialization helps define the scope and applicability of rules.

B.

Include all Culinary rules in the Culinary class, and then organize separate rulesets for Baking and Confectionery to differentiate the rules specific to each culinary specialization.

C.

Create a Culinary application that includes all general rules, followed by the creation of Baking and Confectionery as top-level applications that are built on the foundational Culinary application. Specializing at the application level makes managing their releases more manageable.

D.

Create distinct subclasses for both Baking and Confectionery under the primary Culinary class. Place common and specialized rules within the Culinary class in their respective subclasses. Using class specialization enables you to define rule scope and applicability.

As a Lead System Architect at a multinational corporation, you are tasked with addressing significant user-reported delays in a critical application. Suspecting that the delays are due to database-related issues that have arisen suddenly, you aim to identify and resolve the problem methodically. Which two options do you recommend to isolate the issue and enhance performance? (Choose Two)

A.

Reduce the thresholds for query-time alerts to more easily identify complex queries that might be causing delays.

B.

Raise the threshold for blob-size alerts to aid in the detection of large case instances that might impact performance.

C.

Analyze the periods during which the database experiences the highest usage, because this method assists in pinpointing the specific times to search for alerts or other issues in the log files.

D.

Configure the system to write Pega logs to the database server to gain insights into the events occurring within the application that might contribute to the delays.

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

The ABC organization has a financial application built on Pega Platform™. ABC wants to extend this application to other regions in a short period of time, by deploying a large development team. As it is a very sensitive application, ABC wants to have a proper review process to ensure delivery of quality code by the team. What are the two approaches that can help ensure that proper quality check-in gates are in place to achieve this requirement? (Choose Two)

A.

Dedicate a separate ruleset for each team.

B.

Implement rule changes in separate ruleset versions.

C.

Reject the code deployment to higher environments if the compliance score does not meet the Center of Excellence-specified threshold value.

D.

Implement a rule check-in approval process.

Assume that two customers are simultaneously attempting to book tickets for the same flight, which has limited seat availability. How does the design pattern for limited availability and concurrency handle this scenario? (Choose Two)

A.

The design pattern records booking attempts for both customers. If the flight exceeds capacity, the customer goes on a waiting list. The waiting list clears after a certain period, and the customer receives notification of the results.

B.

The design pattern rejects both bookings, entering an ambiguity mode. It prompts customers to try again later. In the second attempt, it prioritizes one customer based on a first-come-first-serve basis.

C.

The design pattern allows both customers to book; however, one receives a notification about no available seats after the analysis.

D.

The design pattern prioritizes customer bookings on a first-come-first-serve basis.

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.

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.