PEGACPSSA23V1 Exam Brain Dumps - Study Notes and Theory [Apr-2024]
100% Guaranteed Results PEGACPSSA23V1 Unlimited 140 Questions
NEW QUESTION # 12
Which two methods allow you to identify the Pega Platform application type? (Choose Two)
- A. View the portals used by the application.
- B. View the Settings tab of the case designer.
- C. View the Application definition rule.
- D. View the Application layers widget for the ruleset stack.
Answer: C,D
Explanation:
The application type can often be identified by viewing the Application layers widget for the ruleset stack, which gives an overview of how the application is structured, and by viewing the Application definition rule, which provides detailed information about the application's setup and its components. Reference: Pega Platform Help - Application Layers.
NEW QUESTION # 13
A Fulfillment report needs to list the user ID of the employee who packages the items to ship in an Order case. The report provides information from the MyCo-Orders-Work-Ship and Data-Admin-Operator-ID classes.
Which two options independently satisfy the report requirements? (Choose two.)
- A. Add the user ID to the Fulfillment report definition as a parameter.
- B. Use an association rule to join operator information to each case to populate the Fulfillment report.
- C. Specify both classes on the Pages & Classes tab on the Fulfillment report definition.
- D. Configure a class join on the Fulfillment report definition to join operator information to each case.
Answer: B,D
Explanation:
To satisfy the report requirements, you can configure a class join on the Fulfillment report definition to join the operator information to each case. Alternatively, you can use an association rule to achieve the same effect. Both these options allow for the relevant operator information to be displayed alongside the shipping information in the report. Reference: Pega Reporting Guide - Joining Data.
NEW QUESTION # 14
Drag the error type on the left to its description on the right.
Answer:
Explanation:
NEW QUESTION # 15
A Pega Platform application has just been integrated with an external data source.
Which of the following tests do you perform to ensure that the integration passes data as expected?
- A. Automation test
- B. Unit test
- C. Performance test
- D. Scenario test
Answer: B
Explanation:
Unit tests are the first line of testing when ensuring that an integration passes data as expected. They are designed to test individual parts of the code - in this case, the integration point with an external data source - to confirm that it works properly in isolation. Reference: Pega Platform Help - Automated Unit Testing
NEW QUESTION # 16
Select the three Pega best practices for developing activities. (Choose Three)
- A. Limit activity calls to at most three to prevent performance problems.
- B. Limit custom Java steps whenever possible.
- C. Limit the use of activities. Use alternative rule types such as data transforms whenever possible.
- D. Keep activities short. Limit your activities to fewer than 15 steps.
- E. Use only activities to support queue processing and interfaces.
Answer: B,C,D
Explanation:
Pega best practices recommend keeping activities short to enhance maintainability and readability. Custom Java steps should be limited to reduce complexity and potential errors. Activities should also be limited in general, with preference given to other rule types that are more declarative and less procedural, like data transforms, to improve application performance and maintainability. Reference: Pega SSA course materials on activity best practices.
NEW QUESTION # 17
You want to allow users to use an application on a mobile device, even if the device is not connected to a network.
Which configuration option supports this requirement?
- A. Source repeating layouts using report definitions.
- B. Source drop-down lists using data pages.
- C. Simulate external data sources when the application is offline.
- D. Configure UI elements to use native controls on mobile devices.
Answer: B
Explanation:
To support offline use of applications on mobile devices, you should source UI elements such as drop-down lists using data pages, which can be configured to be available offline. This allows the application to use locally cached data to populate the UI elements even when the device is not connected to a network. Reference: Pega Mobile Developer Guide on offline capabilities.
NEW QUESTION # 18
A hospital uses a case type to manage the treatment of patients visiting the Emergency Room (ER). Cases are created when the patient checks in at the registration desk, and are resolved when the patient is released from the hospital. Stakeholders identify the following security requirements for the case type.
* Patients access cases on a read-only basis.
* Patients can only access their own cases.
* Doctors and nurses can modify cases throughout the case life cycle.
* Only doctors are allowed to write prescriptions.
Which configuration allows doctors and nurses to modify cases while complying with all identified security requirements?
- A. Create two access roles, one for doctors and one for nurses, and set the modify action for each to 5.
- B. Create a single access role for both doctors and nurses, and set the modify action to 1.
- C. Create a single access role for both doctors and nurses, and set the modify action to 5.
- D. Create two access roles, one for doctors and one for nurses, and set the modify action for each to 1.
Answer: C
Explanation:
To allow both doctors and nurses to modify cases while complying with the identified security requirements, the best approach is to create a single access role for both doctors and nurses (C) and set the modify action to 5. This configuration grants both user groups the necessary permissions to modify cases throughout the case life cycle. By using a single access role with a high level of access for modifications, the application simplifies role management while ensuring that both doctors and nurses can perform their duties effectively, without compromising the security and integrity of patient cases.Reference: Pega Community documentation on Access Role to Object and case management best practices.
NEW QUESTION # 19
Which two situations are likely to negatively impact application performance? (Choose Two)
- A. Business architects have delegated a large number of rules to process owners.
- B. A developer uses an SQL query tool or activities to archive case data before purging tables.
- C. A report definition generates report data based on several properties stored in the BLOB.
- D. Several applications on the system write cases to the pr_other table in the database.
Answer: B,C
Explanation:
Generating report data based on several properties stored in the BLOB (Binary Large Object) can impact performance because it requires full database table scans. Using SQL query tools or activities to archive case data before purging tables can also negatively impact performance, as they may not be optimized for the Pega Platform's data structures. Reference: Pega Platform Help - Performance Best Practices.
NEW QUESTION # 20
Which two options do you consider when creating a pre-processing data transform? (Choose Two)
- A. The security setting for the flow action
- B. The effect if the flow action is reloaded
- C. The potential reuse of the flow action
- D. The timing of the commit for the flow action
Answer: B,D
Explanation:
When creating a pre-processing data transform, you should consider the timing of the commit for the flow action and the effect if the flow action is reloaded. These factors can impact how the data transform processes data and how it integrates with the flow action's lifecycle. Reference: Pega Platform Help - Data Transforms.
NEW QUESTION # 21
You are sending information to an external system of record by using a connector. What do you use to implement this requirement?
- A. Reference a connector from a data transform.
- B. Call a connector from a Save data page step.
- C. Configure a service rule and listener.
- D. Create a new external data source.
Answer: A
Explanation:
To send information to an external system of record using a connector, you would typically reference a connector from within a data transform. The data transform can manipulate the data as needed before it is sent out through the connector. Reference: Pega Platform Help - Connectors.
NEW QUESTION # 22
Which two statements are true about database tables in Pega Platform? (Choose Two)
- A. The Database Table rule allows configuration of a connection to a specific table.
- B. The report definition rule should only be used against one table for performance reasons.
- C. The PegaRULES database contains rules while PegaDATA contains work instances.
- D. The History record table contains a record of when each user logged in to the system.
Answer: A,C
Explanation:
A: In Pega Platform, the PegaRULES database is used to store rules, while the PegaDATA database contains work instances and other data instances.
B: The Database Table rule in Pega allows you to configure the connection settings to a specific external database table, facilitating the interaction with external data sources. Reference: Pega official documentation on Pega Platform databases and Database Table rules.
NEW QUESTION # 23
You are integrating two Pega Web Mashups into a client's mortgage loan financing page. What do you configure to successfully embed both mashups?
- A. Identify unique names for each mashup.
- B. Load both mashups simultaneously.
- C. Define identical URLs for each mashup.
- D. Run the mashups on the same thread.
Answer: A
Explanation:
When integrating multiple Pega Web Mashups into a single page, it is necessary to identify unique names for each mashup to ensure that they are embedded and function independently without conflict on the client's page. Reference: Pega Platform Help - Pega Web Mashup.
NEW QUESTION # 24
Which two use cases correctly describe controlling access to an attachment category? (Choose Two)
- A. Configure the privilege "DeleteOwn" and assign it to a user so that a user can delete their own attachments.
- B. Configure Client-based access control on the class where the attachment category exists to restrict access to the attachment.
- C. Configure a Visible when condition called "IsDocumentPrivate" to allow users to view an attachment if the rule returns false.
- D. Configure the When condition "IsCurrentStageTesting" to allow users to view an attachment if the rule returns true.
Answer: A,D
Explanation:
Controlling access to an attachment category can be achieved through various configurations. Using a When condition like "IsCurrentStageTesting" (A) allows for dynamic access control based on the case's current stage, enabling attachments to be accessible only under certain conditions. Assigning privileges, such as "DeleteOwn" (C), to users enables fine-grained control over actions users can perform on attachments, such as deleting their own attachments, thus enhancing security and compliance with business rules.Reference: Pega Community documentation on attachment categories and access control.
NEW QUESTION # 25
In which example would you use the application settings feature?
- A. A manager can update the price of a service without a developer editing the application.
- B. An IT service application stores a list of operating systems using a Pega system of record.
- C. A weather service application points to a web service for weather data.
- D. A data page is available across multiple user sessions and is updated once a day.
Answer: C
Explanation:
Application settings are used to point to external resources that can change without requiring changes to the application code. For example, a weather service application might use application settings to specify the URL of a web service for weather data. Reference: Pega Platform Help - Application Settings.
NEW QUESTION # 26
An application contains a flow action with an Apply to: class of TRB-HRApps-Work-Feedback in a locked ruleset. When updating the application, you save the existing flow action into a new minor version of the ruleset this time applied to TRB'HRApps-Work so it can be used by more than one case type.
How do you prevent the application from using the rule in TRB-HRApps-Work-Feedback?
- A. Save an additional new version of the flow action applied to TRB-HRApps-Work-Feedback and set the availability to "Withdrawn".
- B. Save an additional new version of the flow action applied to TRB-HRApps-Work-Feedback and set the availability to "Not available".
- C. Save an additional new version of the flow action applied to TRB-HRApps-Work-Feedback and set the availability to "Blocked".
- D. Save an additional new version of the flow action applied to TRB-HRApps-Work and set the availability to "Final".
Answer: A
Explanation:
To prevent the application from using the rule in TRB-HRApps-Work-Feedback, you would save an additional new version of the flow action applied to TRB-HRApps-Work-Feedback and set the availability to "Withdrawn". This marks the rule as no longer valid for use in the application. Reference: Pega official documentation on rule availability.
NEW QUESTION # 27
A form must support accessibility.
How do you enable a user to specify a date?
- A. Provide separate controls for month, day, and year.
- B. Configure a text box to allow date entry.
- C. Use a calendar control that displays an entire month.
- D. Use a calendar control that displays an entire year.
Answer: C
Explanation:
To support accessibility, it's recommended to use a calendar control that displays an entire month. This allows users who rely on screen readers or keyboard navigation to select a date without the need for precise mouse control or having to manually input the date, which can be error-prone. Reference: Pega User Interface Design Guide - Accessibility.
NEW QUESTION # 28
There are five instances of a rule in the rules cache. The only differences between these are the circumstance settings and ruleset version. The operator's access group has access to all ruleset versions.
On 1 June 2020, which instance is chosen by rule resolution if .Country = Algeria?
- A. SelfService:01-01-01 (No Circumstance)
- B. SelfService:01-01-05 (No Circumstance)
- C. SelfService:01-01-03 (Circumstance: None, Base Rule checked)
- D. SelfService:01-01-02 (Circumstance: Start Date = 1 January 2020; End Date = 31 December 2020)
- E. SelfService:01-01-01 (Circumstance: .Country=Algeria)
Answer: E
Explanation:
On 1 June 2020, rule resolution would choose the instance of the rule that is circumstanced for Algeria, provided that the rule's availability is not blocked or withdrawn and the ruleset version is accessible by the operator's access group. The specific rule circumstanced for Algeria would take precedence over the base rule or other circumstanced rules that do not match the circumstance condition. Reference: Pega SSA course materials on circumstancing rules.
NEW QUESTION # 29
Which statement describes the appropriate use of the Purge/Archive wizard to address application performance?
- A. Remove old cases to reduce the size of a database table.
- B. Delete any properties exposed in table columns from the BLOB.
- C. Remove unused rules caches maintained on the system.
- D. Delete stored SQL procedures that have been updated.
Answer: A
Explanation:
The Purge/Archive wizard in Pega Platform is appropriately used to remove old cases to reduce the size of a database table (B). Over time, completed or resolved cases can accumulate in the system, leading to large table sizes that can negatively impact application performance. By archiving these cases, you can move them out of the primary database tables into an archive, and by purging, you can delete cases that are no longer needed. This process helps maintain optimal database performance and manage storage costs effectively.Reference: Pega Community documentation on the Purge/Archive wizard and database maintenance best practices.
NEW QUESTION # 30
You have identified an activity that does not perform well. You need to find out exactly which steps in the activity are causing the poor performance.
Which tool allows you to identify the cause of the performance issue?
- A. Database Trace
- B. Tracer
- C. Performance Analyzer (PAL)
- D. Performance Profiler
Answer: B
Explanation:
The Tracer tool is designed to debug the execution of rules by providing detailed runtime information about each step within a rule. This allows you to identify performance issues at the step level within an activity. Reference: Pega Platform Help - Tracer Tool.
NEW QUESTION # 31
......
PEGACPSSA23V1 Dumps PDF - Want To Pass PEGACPSSA23V1 Fast: https://crucialexams.lead1pass.com/Pegasystems/PEGACPSSA23V1-practice-exam-dumps.html