A reservation process allows customers to reserve a flight, hotel room, and rental car as part of a travel itinerary. Which configuration displays a check box to allow users to select travel insurance only if the itinerary includes a flight?
A. A visible when condition applied to the check box B. An action set applied to the check box C. A declare expression configured for forward chaining D. A validate rule applied to the flow action
A. A visible when condition applied to the check box
Explanation/Reference:
For a reservation process that includes various components like flights, hotel rooms, and rental cars, showing an option for travel insurance specifically when a flight is part of the itinerary necessitates dynamic UI adjustments based on the user's selections.
A . A visible when condition applied to the check box: This configuration directly supports the requirement by dynamically controlling the visibility of the travel insurance check box based on whether the itinerary includes a flight. A Visible When condition can evaluate the presence of a flight in the itinerary and accordingly display or hide the insurance option, providing a tailored user experience. Action sets (B) typically define user interactions with UI elements but are not used for conditionally displaying those elements based on other case data. Declare expressions with forward chaining (C) are used for calculating values rather than controlling UI element visibility. Validate rules (D) ensure data integrity during submission and are not involved in UI visibility conditions. Pega's documentation on UI elements and conditions explains how to use Visible When conditions to dynamically control the display of components based on case data or user actions, enhancing the responsiveness and relevance of application interfaces.
Question 232:
From the employee training portal, an employee opens a new Enrollment case, submits course selections, and receives an email confirmation. There is an error in the email confirmation. You must identify the cause of the error by recording a set of interactions on the portal and testing expected behavior on the data collection fields. What three steps, when applied in combination, achieve the required testing? (Choose Three)
A. Add stage-entry validations on the Enrollment case fields. B. Create a test case for the employee portal. C. Add assertions on the Ul elements to verify correct data collection.(Ul Assertion) D. Run a new Enrollment case from the employee training portal. E. Add field validations on the course selection step.
B. Create a test case for the employee portal. C. Add assertions on the Ul elements to verify correct data collection.(Ul Assertion) D. Run a new Enrollment case from the employee training portal.
Explanation/Reference:
To identify the cause of an error in an email confirmation from the employee training portal, it's crucial to replicate the scenario and verify that the correct data is being collected and processed. Creating a test case specifically for the employee portal provides a structured approach to test the entire process flow, including form submissions and email outputs. Adding UI assertions ensures that the interface elements are correctly capturing and displaying the data as expected. Running a new Enrollment case allows for end-to-end testing in the real application environment, ensuring that all components interact as intended and the email confirmation is generated correctly.
Question 233:
An online retailer allows customers to select a courier service for deliveries. The list of available courier services is drawn from a data type sourced in the Pega database. The Fulfillment department wants to allow local warehouse managers to add courier services to mitigate increases in delivery times and remove courier services that fail to meet delivery metrics. Which two options are required to allow local warehouse managers to update courier service records in production? (Choose two.)
A. Create an access group for local warehouse managers. B. Delegate the records for the courier service data type. C. Define an approval process for adding and removing courier services. D. Enable rule checkout for the local warehouse managers
B. Delegate the records for the courier service data type. C. Define an approval process for adding and removing courier services.
Explanation/Reference:
To enable local warehouse managers to dynamically update the list of courier services based on performance and delivery metrics directly in the production environment, specific functionalities need to be leveraged within Pega. B . Delegate the records for the courier service data type: Delegation is a powerful feature in Pega that allows certain data types or rules to be managed by business users directly in production. By delegating the courier service data type, local warehouse managers can add or remove courier services as needed without requiring changes to the application code or direct database access. C . Define an approval process for adding and removing courier services: Implementing an approval process ensures that changes to courier services undergo review before becoming effective. This step maintains data integrity and service quality by ensuring only justified updates are made to the list of courier services. Creating an access group for local warehouse managers (A) is a necessary step for defining user permissions but on its own does not specifically enable the updating of courier service records. Enabling rule checkout (D) is more related to the development environment and rule versioning, not directly applicable to the business user's management of data records in production. Pegas official documentation on data delegation and workflow configuration provides insights into enabling business users to manage specific types of data directly and securely, including the setup of approval processes for such changes.
Question 234:
Which two statements about Configuration sets are true? (Choose two.)
A. Used if a Dynamic System Setting does not meet the requirements B. Used to organize Configuration settings with a common element C. Configured by modifying the Data-Configuration-Settings class D. Enables the business to control application behavior
B. Used to organize Configuration settings with a common element D. Enables the business to control application behavior
Explanation/Reference:
Statements true about Configuration sets:
B . Used to organize Configuration settings with a common element. Configuration sets in Pega are used to group related settings, which can be managed collectively and applied consistently across the application. D . Enables the business to control application behavior. Configuration sets allow business users to change certain aspects of the application behavior without modifying the underlying code directly, providing greater agility and control over the application.
Question 235:
An airline has the following requirement:
A passenger requiring a service animal must document the type of animal, the size of the animal, and any relevant medical information the crew may need during the flight. The application prompts the passenger for this information when the
passenger declares travel with a service animal.
Which case life cycle configuration meets this requirement?
A. Add a process to the case life cycle for service animal accommodation and apply a condition to determine when to, run the process. B. Apply an optional action to the appropriate stage to allow the passenger to provide the information as needed. C. Configure a stage in the case life cycle for service animal accommodation and apply a stage validation condition. D. Create a child case for service animal accommodation to automatically resolve unless the passenger requires the accommodation.
A. Add a process to the case life cycle for service animal accommodation and apply a condition to determine when to, run the process.
Explanation/Reference:
For accommodating passengers traveling with service animals, efficiently capturing necessary information (type of animal, size, and medical information) is critical. This requirement is conditional, triggered only when a passenger declares travel with a service animal. A . Add a process to the case life cycle for service animal accommodation and apply a condition: This option allows for the integration of a dedicated process within the overall case life cycle specifically for gathering service animal information. The process is conditionally executed, based on whether the passenger has declared the need for service animal accommodation. This ensures that the additional information is requested only when relevant, keeping the case life cycle streamlined and focused. Applying an optional action (B) offers flexibility but might not guarantee the collection of this information as part of the standard workflow. Configuring a separate stage (C) could unnecessarily segment the case life cycle, especially if service animal accommodation is a conditional step rather than a distinct phase. Creating a child case (D) for service animal accommodation could complicate case management, especially for a requirement that is inherently part of the main travel arrangement process rather than a standalone case. Pega's case life cycle design principles advocate for the use of conditional processes to manage variable requirements within a case, ensuring that information is collected and actions are taken only when relevant to the case context.
Question 236:
Users can access an apartment hunting application from different devices with different screen sizes. A screen displays the photos of available properties. By default, the photos are displayed in three columns. When the screen width is less than 800 pixels, the photos should be displayed in two columns. How do you implement the screen for this requirement?
A. Use a dynamic layout with a responsive breakpoint at 800 pixels to change from inline-grid tripleto inline-grid double format. B. Use a column layout with a responsive breakpoint at 800 pixels to hide the left column. C. Circumstance the layout to display different number of columns at different screen sizes. D. Circumstance the section rule to display different number of columns at different screen sizes.
A. Use a dynamic layout with a responsive breakpoint at 800 pixels to change from inline-grid tripleto inline-grid double format.
Explanation/Reference:
To adapt the display of property photos to different screen sizes within an apartment hunting application, the best approach is:
A . Use a dynamic layout with a responsive breakpoint at 800 pixels to change from inline-grid triple to inline-grid double format. This option uses responsive design principles to adjust the number of columns based on screen size. When the screen width is below 800 pixels, the layout automatically changes from three columns (triple) to two columns (double), ensuring optimal display on smaller devices.
Question 237:
Which two of the following use cases do you implement by using one or more calculated fields? (Choose Two)
A. A sales representative wants to quote the cost of an insurance policy based on selected coverage options. B. An accountant wants to list the largest order for the last month, for each customer account. C. A project manager wants to estimate the cost of painting a banquet hall based on labor and materials required. D. A certification manager wants to determine the number of exams conducted at each testing facility in the current quarter.
A. A sales representative wants to quote the cost of an insurance policy based on selected coverage options. C. A project manager wants to estimate the cost of painting a banquet hall based on labor and materials required.
Explanation/Reference:
Calculated fields in Pega are used to compute values based on other data elements within the application, suitable for:
A . A sales representative wants to quote the cost of an insurance policy based on selected coverage options. Calculated fields can dynamically compute the total cost of an insurance policy as different coverage options are selected, providing real-time pricing information.
C . A project manager wants to estimate the cost of painting a banquet hall based on labor and materials required. Similarly, calculated fields can be used to aggregate costs of materials and labor to provide an overall estimate for a project, facilitating budget management.
Question 238:
An on-demand transportation application has a Conversation preference data type. When customers use the application to request a ride, they can specify their conversation pwhether they would like to talk to their driver or if they would prefer
silence. Company stakeholders are interested in analyzing the conversation preference data.
How is the Conversation preference data type sourced?
A. Local system of record B. No system of record C. External system of record
B. No system of record
Explanation/Reference:
For an on-demand transportation application collecting conversation preferences from customers, the nature of the data"preferences stated during the booking process"suggests it is generated dynamically rather than stored in a pre-existing database.
B . No system of record: This option acknowledges that conversation preferences are specified by customers in real-time and are specific to each ride request, rather than being pulled from a preestablished database (local or external). The data is generated by user input within the application itself and used for analysis without necessitating a traditional system of record for storage. A local system of record (A) refers to data stored within the application's database but is more relevant for static or semi-static data rather than dynamic preferences. An external system of record (C) is used for data that the application retrieves from outside sources, which does not
Question 239:
How do you configure the application to display a field for entering a mobile phone number only when the check box is selected?
A. Use a when condition in a data transform to determine whether to show the mobile phone number field. B. Use a when condition in the flow to branch the flow based on case data. C. Use a circumstance on the check box property to create a rule variant that is effective when the check box is selected. D. Use a when condition in the Ul form to determine whether to show the mobile phone number field.
D. Use a when condition in the Ul form to determine whether to show the mobile phone number field.
Explanation/Reference:
To dynamically display a field based on the state of a checkbox in a Pega application, the correct approach is:
D . Use a when condition in the UI form to determine whether to show the mobile phone number field. This configuration involves setting a visibility condition directly on the mobile phone number field in the form, using a "when" rule. The rule evaluates the state of the checkbox, and if selected, the field for entering a mobile phone number becomes visible. This solution leverages Pega's dynamic UI capabilities to show or hide fields based on user interactions without needing server-side interventions like data transforms or flow changes.
Question 240:
Choose two scenarios that you configure using procedural processing. (Choose Two)
A. A prescription order page with a list of available prescriptions sent from the customer's health care provider. When the user opts to fill one or more prescriptions, the cost summary updates. B. A restaurant reservation page in which the user chooses a reservation and the system returns the number of available tables. C. A purchase order request page with a summary of items. The order total price updates after the customer changes a quantity. D. A flight booking page where customers can adjust the location and date of the departure and return flights. The ticket prices recalculate after the customer chooses the "recalculate price" option.
C. A purchase order request page with a summary of items. The order total price updates after the customer changes a quantity. D. A flight booking page where customers can adjust the location and date of the departure and return flights. The ticket prices recalculate after the customer chooses the "recalculate price" option.
Explanation/Reference:
Procedural processing in application development is used for tasks that follow a specific sequence of steps or require updates based on user actions. It is particularly useful for calculations or updates triggered by user interactions. C . A purchase order request page with a summary of items: This scenario involves procedural processing because the application needs to recalculate the total price whenever the customer changes the quantity of an item. This is a direct, sequential update process
Nowadays, the certification exams become more and more important and required by more and more
enterprises when applying for a job. But how to prepare for the exam effectively? How to prepare
for the exam in a short time with less efforts? How to get a ideal result and how to find the
most reliable resources? Here on Vcedump.com, you will find all the answers.
Vcedump.com provide not only Pegasystems exam questions,
answers and explanations but also complete assistance on your exam preparation and certification
application. If you are confused on your PEGACPSA23V1 exam preparations
and Pegasystems certification application, do not hesitate to visit our
Vcedump.com to find your solutions here.