You should consider using a field value when the list of allowed values is
Answer : A
You should consider using a field value when the list of allowed values is mostly static. Field values are best used for properties with values that do not change often and need to be reused throughout the application. Reference: Pega official documentation on field values.
A global application with infrastructure nodes located throughout the world requires certain operations to start executing at midnight GMT.
Select two possible designs for this use case. (Choose Two)
Answer : B, C
To start operations at a specific GMT time regardless of where the server is located, you would use the Queue-For-Processing method in an activity. This method adds a task to a queue to be processed either by a standard or a dedicated queue processor. A dedicated queue processor can be configured to operate on a schedule, so it can start processing at midnight GMT. Reference: Pega SSA course materials on queue processors and timed events.
The Static Assembler is used to address rules assembly issues due to which cause?
Answer : A
The Static Assembler is a Pega tool used to address rules assembly issues specifically when the server is managing a large number of rules caches. By pre-assembling rules into a static content, the Static Assembler helps in improving performance in situations where cache management becomes complex due to the volume of rules. It creates a set of static files that represents the assembled rules, which can reduce the overhead on the server during rule assembly and cache management. Reference: Pega official documentation on performance tools and best practices.
Which three mobile device features can you leverage by using Pega Mobile Client? (Choose Three)
Answer : A, C, D
Pega Mobile Client supports leveraging various mobile device features to enhance app functionality and user experience. Barcode scanning (A) is commonly used in logistics and retail applications for quick identification and tracking of items. Biometric identification (C), such as fingerprint or facial recognition, adds an extra layer of security for user authentication. Push notifications (D) are crucial for real-time communication, alerting users to updates or required actions within the app, even when the app is not actively in use. Reference: Pega Community documentation on Pega Mobile Client capabilities.
How do you ensure that only a manager can run a specific flow action?
Answer : B
To ensure that only a manager can run a specific flow action, the best approach is to add a privilege to the flow action form (B) and then assign this privilege to a role that is exclusive to managers. This role is then associated with the access group designated for managers. Privileges provide a granular level of security that can be used to control access to specific actions within a Pega application, such as executing a flow action. By leveraging privileges, you can ensure that only users with the manager role, who possess the necessary privilege, can execute the flow action, thereby enforcing the desired level of access control. Reference: Pega Community documentation on privileges, roles, and access groups.
Items selected by a user need to be copied to a page list property when the user submits the form. How do you copy the items?
Answer : A
To copy items selected by a user to a page list property when the user submits the form, add a data transform to the flow action as a post-processing action (A). Post-processing actions occur after the user submits the form, making it the right moment to transfer the selected items into the page list property for further processing or storage. Reference: Pega Community documentation on data transforms and flow action post-processing.
A music production company's application contains the following classes:

A requirement states that users assigned the role "Manager" can edit objects related to any studio work.
At which position in the class hierarchy do you configure an Access of Role to Object (ARO) record to satisfy this requirement?
Answer : C
To satisfy the requirement that users assigned the role 'Manager' can edit objects related to any studio work, the Access of Role to Object (ARO) record should be configured at the 'UPlusMusic-Production-Work-Studio-' level (C). This level is the common parent class for all studio-related work, such as Recording and Editing. By setting the ARO at this level, it ensures that managers have the necessary permissions to edit any object that falls under the studio work hierarchy, without having to set permissions at each individual subclass level. Reference: Pega Community documentation on class hierarchy and Access of Role to Object configuration.