What two features do activities and functions share? (Choose Two)
Answer : B, D
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.
A company wants to run the same pega application in its eastern US office as well as its india
office. The eastern united states server runs in the eastern united states time zone. The india server runs in the india time zon. The company wants a process to run in both offices at the same time world-wide once a day regardless of the server's location
How do you efficiently meet this requirement?
Answer : C
Single Advanced Agent Configuration:
Create a single advanced agent and configure its schedule based on the server's local time zone.
Modify Agent Schedule:
For the Eastern US server, set the agent schedule to the Eastern US time zone.
For the India server, adjust the agent schedule to the India time zone.
Time Synchronization:
Ensure that both servers' clocks are synchronized using a standard time protocol to maintain consistent execution times.
Reference: Pega documentation on advanced agent configuration and best practices for multi-time zone scheduling.
How do you configure an application to monitor changes made to delegated Decision Table in a production environment?
Answer : A
Enable Auditing:
On the Rule-Declare-Decision Table RuleForm, check the option to enable auditing.
Monitor Changes:
This configuration will track changes made to the decision table in the production environment.
Reference: Pega decision table documentation and auditing features.
What two recommendations do you provide to the development team to ensure the performance of the Pega application does not degrade over time? (Choose Two)
Answer : C, D
To ensure the performance of the Pega application does not degrade over time, consider the following recommendations:
Maintain Fragmented Tables: Schedule scripts to regularly maintain and defragment tables that are frequently updated. This helps in optimizing database performance.
Purge and Archive Records: Implement purging and archiving strategies based on the company's record retention policy. This practice helps in managing data growth and ensures that the system remains performant over time.
Database Maintenance
Data Archiving
XYZ Corp users are experiencing delays in the application that you suspect is related to the database.
Which two options do you recommend to isolate the issue? (Choose Two)
Answer : B, C
To isolate database-related performance issues:
Investigate when the database is used most heavily (B): Understanding peak usage times can help pinpoint when the database is under the most strain. This information is crucial for identifying potential bottlenecks and optimizing performance.
Lower query-time-related alert thresholds (C): By lowering the alert thresholds for query times, you can capture more detailed information about slow-running queries, helping to identify and address inefficient database operations.
Pega Performance: Database Performance and Tuning
Pega Alerts: Configuring Alerts and Thresholds
Using the information shown in the Class structure, select the correct statement.
Answer : C
The class structure in Pega defines how different case types and sub-cases relate to each other. EventBooking cannot be a subcase of Auto if the business logic does not support such a relationship. Ensuring the correct hierarchy is crucial for maintaining logical and functional consistency in the application. Reference:
Pega Class Structure Guidelines: Pega Class Structure
XYZ Corporation wants to perform extensive analysis on work party information across various case types in near real time. At the same time, XYZ wants to minimize the impact this analysis has on case workers using Pega applications.
Choose two options that would contribute to viable solutions. (Choose Two)
Answer : B, D
Step by Step Comprehensive Detailed Explanation with Reference: To perform extensive analysis on work party information while minimizing impact on case workers:
Configure a reports database for the Class Group and Index WorkPartyUri Data Admm DB-Table records (B): Setting up a separate reports database helps offload reporting activities from the transactional database, reducing the load on the operational system.
Use BIX to export Case and related Work Party data to a data warehouse (D): BIX (Business Intelligence Exchange) can be used to export data in bulk to a data warehouse where extensive analysis can be performed without affecting the performance of the operational Pega applications.
Pega Reporting: Using a Reports Database
Pega BIX: Business Intelligence Exchange