You are using pega express. You want to avoid creating unnecessary case-level properties and views. Which three actions do you take to accomplish this goal? (choose three)
Answer : A, B, E
To avoid creating unnecessary case-level properties and views in Pega Express:
Define case type views using '* page, property' syntax for the majority of the fields (Answer A):
Drag-and-drop a Field Group when defining a case view (Answer B):
Add an embedded Page property to the case type (Answer E):
Which configuration steps do you perfrom to enable an access group for offline user?
Answer : D
To enable an access group for offline users, you need to configure an offline-capable portal as the default portal for the access group. This ensures that when users log in, they have access to the correct interface and functionality that supports offline usage.
A case displays recent customer transaction. Different operators often view the recent transactions
for the same customer repeatedly throughout the day. the operation to fetch the transactions is resource-intensive, and the source data is updated once an hour. select two options to configure a data page to cache the customer transactions and minimize the operator's wait time. (choose two)
Answer : A, B
To configure a data page that caches customer transactions and minimizes operator wait time, you should:
Set the data page scope to node to ensure that the cached data is shared among all requestors on the same node, reducing the number of times the data needs to be fetched.
Configure the refresh strategy to reload if the data is older than 1 hour, aligning with the data update frequency and ensuring that the data is not stale.
Select the primary reason for developing a set of unit lest cases and automated testing Suites in a continuous integration and continuous deployment (CI/CD) model.
Answer : C
The primary reason for developing a set of unit test cases and automated testing suites in a CI/CD model is:
C . Automated testing programmatically ensures quality of rules to maintain the integrity of the pipeline.
Automated testing helps ensure the quality and correctness of the rules being deployed. It verifies that changes do not introduce errors and maintains the integrity of the pipeline by catching issues early in the development cycle.
Pega Documentation on CI/CD: CI/CD
A cutomer mobile app is configure to support offline usage if the mobile device is online when is a new case persisted to the server?
Answer : A
Offline Support: Pega's mobile app configuration supports offline usage, allowing users to work without an active internet connection.
Synchronization: When the device comes online, it synchronizes with the server. During this synchronization process, any new cases created on the device are persisted to the server.
Automatic Sync: This ensures that all data captured while offline is properly stored on the server once connectivity is restored.
Pega Academy: Mobile Application Development
Pega Documentation: Offline Support and Synchronization
You isolated the problem to node 1 of the cluster. You see node 1 goes down shortly after 3:00 p.m. every day with an out-of-memory error. Which two alerts typically precede this condition?(choose two)
Answer : A, C
Identifying and resolving out-of-memory errors in a cluster node involves understanding the alerts that typically precede such conditions.
PEGA0004 -- Quantity of data received by database query exceeds limit (Answer A):
PEGA00017 -- Cache exceeds limit (Answer C):
A pega application has cases that represent customer accounts each with many members.
When a member of a customer account registers with the application through an offline
component, a related registration transaction is recorded. An advanced agent updates the
customer account cases with new members. The application is running in a multimode
system and advanced agents are enabled on all nodes. Which two elements are valid design
choices? (choose two)
Answer : A, D
Use the Optimistic Locking Option: Optimistic locking ensures that updates are handled efficiently in a multimode system without causing contention.
Override DetermineLockString: Override the DetermineLockString to use .AccountID instead of .pyID as the lock string to ensure that the correct customer account is locked during updates. Reference:
Pega Locking Mechanisms: Locking Mechanisms
Pega Advanced Agent Configuration: Advanced Agent Configuration