Free Sample Questions to Practice PEGACPSSA23V1 Certification Test Engine [May-2024] 2024 Valid PEGACPSSA23V1 Real Exam Questions, practice Certified Senior System Architect NEW QUESTION # 13 The current version of an application lists ABC:02-02 as an application ruleset. The ruleset versions listed in the Answer Area are also present on the system.In the Answer Area, identify the ruleset versions [...]

[Q13-Q32] Free Sample Questions to Practice PEGACPSSA23V1 Certification Test Engine [May-2024]

Share

Free Sample Questions to Practice PEGACPSSA23V1 Certification Test Engine [May-2024]

2024 Valid PEGACPSSA23V1 Real Exam Questions, practice Certified Senior System Architect

NEW QUESTION # 13
The current version of an application lists ABC:02-02 as an application ruleset. The ruleset versions listed in the Answer Area are also present on the system.
In the Answer Area, identify the ruleset versions that the skim operation considers when you perform a major version ruleset skim on ruleset ABC.

Answer:

Explanation:


NEW QUESTION # 14
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. Use a calendar control that displays an entire month.
  • C. Use a calendar control that displays an entire year.
  • D. Configure a text box to allow date entry.

Answer: B

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 # 15
Which statement is true about services?

  • A. Services may process outbound requests.
  • B. Services may use a listener that runs in the background.
  • C. Services return all data in XML format.
  • D. Services require a REST connector to function.

Answer: B

Explanation:
Services in Pega Platform can be configured to listen for incoming requests using background listeners. These listeners are continuously running processes that wait for requests on specific ports or addresses. When a request is received, the service processes it accordingly. This capability is crucial for enabling asynchronous communication and integration with external systems, where Pega services can act upon requests without requiring manual initiation of these interactions.Reference: Pega Community documentation on service types and listeners.


NEW QUESTION # 16
A developer has identified resource-intensive queue processors as the source of performance issues that application users are experiencing.
Which two actions do you perform to resolve the performance issues? (Choose Two)

  • A. Configure the application nodes with node types.
  • B. Configure the queue processors to run multiple times a day.
  • C. Associate the queue processors with the appropriate node types.
  • D. Select the Include in background processing option on the application rule.

Answer: A,C

Explanation:
To resolve performance issues caused by resource-intensive queue processors, it's essential to ensure that these processors are associated with appropriate node types (A) and that application nodes are configured with node types (D). Associating queue processors with specific node types allows for the distribution of workload across the application infrastructure, optimizing resource utilization and improving performance. Configuring application nodes with node types ensures that tasks are executed on the most suitable nodes, further enhancing system efficiency and scalability.Reference: Pega Community documentation on queue processors and node types.


NEW QUESTION # 17
Which three items are generated and displayed in the compliance score of an application? (Choose Three)

  • A. Rules with warnings in the application
  • B. Rules with unjustified warnings in the application
  • C. Unweighted compliance score out of 100
  • D. Total core rules used in the application
  • E. Percentage of compliant rules in the application

Answer: A,B,E

Explanation:
The compliance score of an application in Pega Platform includes items such as rules with unjustified warnings in the application (A), rules with warnings in the application (D), and the percentage of compliant rules in the application (E). These metrics provide insights into the application's adherence to best practices and guardrails, highlighting areas that may require attention to improve application quality, maintainability, and performance.Reference: Pega Community documentation on Application Quality Dashboard and compliance scoring.


NEW QUESTION # 18
Which two configurations do you implement when using a Pega Web Mashup? (Choose Two)

  • A. Add an access group for the application rules that need to be accessed from the external system.
  • B. Configure a node-level data page to hold security access information about the external system.
  • C. Leverage the standard authentication service IACAuthentication and update the authentication activities.
  • D. Configure the application permissions by specifying a list of trusted domains in the application rule.

Answer: C,D

Explanation:
A: When using a Pega Web Mashup, leveraging the standard authentication service IACAuthentication and updating the authentication activities to match the external system's requirements is a common practice.
D: Configuring application permissions by specifying a list of trusted domains in the application rule is important for security purposes and to control which external domains are allowed to embed the mashup. Reference: Pega official documentation on Pega Web Mashup configuration.


NEW QUESTION # 19
On which type of rule can you configure edit validate rules?

  • A. Properties
  • B. Case types
  • C. Flow actions
  • D. Activities

Answer: A

Explanation:
Edit validate rules are associated with properties to validate the property value when a user inputs data. Edit validate rules contain a Java function that is called to check the property value for correctness. Reference: Pega Platform Help - Edit validate rules.


NEW QUESTION # 20
A city resident can report potholes to the Department of Transportation by logging in to a mobile Pega Platform application that utilizes the Pega API.
Which two Pega API interactions do you use to facilitate this? (Choose two.)

  • A. Submit the report using POST/cases
  • B. Access the related case type to report using GET/casetypes
  • C. Log into the application using PUT/authenticate
  • D. Update the report using GET/cases

Answer: A,B

Explanation:
To report potholes through a mobile application using the Pega API, the POST/cases method would be used to submit the report case, and the GET/casetypes method would be used to access the related case type to ensure the correct case type is used for the report. Reference: Pega Platform API Guide.


NEW QUESTION # 21
Multiple teams need to update the same application version during a development cycle.
Which two actions do you perform so that the teams do not affect each other's work? (Choose Two)

  • A. Create branches in each team's application.
  • B. Create a new ruleset version for the base application.
  • C. Create a new application for each team built on the base application.
  • D. Create a separate production ruleset for each team.

Answer: A,C

Explanation:
To ensure that multiple teams can update the same application version without affecting each other's work, the following actions are recommended:
B: Create branches for each team's application. This allows teams to work on isolated versions of the application and merge their changes when ready.
D: Create a new application for each team built on the base application. This creates separate instances of the application for each team to work on, which they can then synchronize with the base application as needed. Reference: Pega official documentation on branch rulesets and application development.


NEW QUESTION # 22
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. Run the mashups on the same thread.
  • B. Load both mashups simultaneously.
  • C. Define identical URLs for each mashup.
  • D. Identify unique names for each mashup.

Answer: D

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 # 23
Which two statements are valid about configuring Pega Web Mashup? (Choose Two)

  • A. Use the Integration wizard to generate mashup code for use in other systems.
  • B. Keep the original names of default actions in the mashup code to prevent security risks.
  • C. Only create one DIV element in the hosting web page for each Pega gadget.
  • D. Add a list of trusted domains in your applications in which you want to use the mashup.

Answer: C,D

Explanation:
When configuring Pega Web Mashup, it's essential to create one DIV element in the hosting web page for each Pega gadget (A), ensuring that each gadget is properly isolated and rendered within its designated area on the web page. Additionally, adding a list of trusted domains in your application settings (B) is crucial for security, as it specifies which domains are authorized to host the mashup, preventing unauthorized use or embedding of the Pega functionalities in untrusted environments.Reference: Pega Community documentation on Pega Web Mashup configuration and security best practices.


NEW QUESTION # 24
In a hiring case type, only HR Managers should have read access to a candidate's reference letter attachment. Which two tasks are used to fulfill this requirement? (Choose Two)

  • A. Configure read access for a user according to a privilege
  • B. Restrict read access according to a When condition
  • C. Define a separate Attachment Category for HR Managers
  • D. Configure attribute-based access control on the Attachment Category

Answer: B,D

Explanation:
To ensure that only HR Managers have read access to a candidate's reference letter attachment, the tasks involved include restricting read access according to a When condition (B) and configuring attribute-based access control on the Attachment Category (C). The When condition can specify criteria that must be met for the attachment to be accessible, such as the user's role being an HR Manager. Attribute-based access control allows for the definition of access rules based on attributes of the data or user, providing a flexible and granular approach to securing sensitive attachments like reference letters.Reference: Pega Community documentation on attachment security and attribute-based access control.


NEW QUESTION # 25
A user reports that an application takes five seconds to complete a step and present the next step in a process. Which tool allows you to gather and analyze performance data for the form submission?

  • A. Performance Analyzer (PAL)
  • B. Database Trace
  • C. Performance Profiler
  • D. Tracer

Answer: A

Explanation:
The Performance Analyzer (PAL) is the correct tool to gather and analyze performance data for the form submission that takes a significant amount of time. PAL tracks the interaction with the Pega Platform and provides metrics related to the performance of activities, rules, and system functions over time, which is essential for identifying the cause of the delay during form submission. Reference: Pega official documentation on PAL.


NEW QUESTION # 26
Teams X and Y work on different enhancements in the same ruleset. The release date for each enhancement is uncertain.
Which two options, when performed together, allow each team to keep its work separate? (Choose Two)

  • A. Create access groups for each of the teams.
  • B. Create a new ruleset version for one of the teams.
  • C. Apply privileges to the rules each team configures.
  • D. Create a branch ruleset for each team.

Answer: B,D

Explanation:
When two teams work on different enhancements within the same ruleset and wish to keep their work separate, the best practice is to create a new ruleset version for one of the teams and to use branch rulesets for each team. This allows for parallel development without interference, and the teams can merge their work back into the main ruleset when they're ready. Reference: Pega best practices for parallel development.


NEW QUESTION # 27
You perform a major skim on the ruleset ABC:02-02 to ABC:03-01.
In the Answer area, select the ruleset versions that the skim operation uses.

Answer:

Explanation:


NEW QUESTION # 28
In which two scenarios is it a Pega best practice to use Pega Web Mashup over a Pega API integration? (Choose two.)

  • A. Developers have access to only App Studio when configuring the integration.
  • B. The application is built on Pega Platform version 8.2 using UI Kit.
  • C. Minimal resources are assigned to update Pega Platform for each new release.
  • D. Users are expected to create cases, open assignments, and manage data privacy.

Answer: C,D

Explanation:
Pega Web Mashup is ideal for scenarios where minimal resources are available for updating the Pega Platform with each new release, as it allows external applications to embed Pega UI elements with minimal maintenance. Additionally, it's useful when users are expected to create cases, open assignments, and manage data privacy within an embedded Pega frame in an external web page. Reference: Pega Platform Help - Pega Web Mashup.


NEW QUESTION # 29
Application Settings allow you to____________.

  • A. automate the application migration process
  • B. store references to an external system connected to an application
  • C. execute connectors in parallel to improve performance
  • D. simulate data in an environment for testing purposes

Answer: B

Explanation:
Application Settings allow you to store references to an external system connected to an application. These settings can be used to manage environment-specific parameters such as URLs, file paths, and other data that may vary between development, testing, and production environments. Reference: Pega official documentation on application settings.


NEW QUESTION # 30
Which statement about managing encrypted data in Pega Platform is true?

  • A. Property-level encryption is a time-efficient method to encrypt data.
  • B. Encryption policies apply to Work- and Data- classes only.
  • C. Each organization uses a custom key to encrypt its data.
  • D. Filter conditions cannot reference encrypted properties in reports.

Answer: D

Explanation:
When properties are encrypted in Pega Platform, they cannot be used in filter conditions for reports because the data is in a non-readable format. To apply filters, the data must be decrypted, which is not typically done within the reporting tool. Reference: Pega Platform Help - Data Encryption.


NEW QUESTION # 31
A data page is used to retrieve data from an external system. If an error occurs, you want to display a message to the user and send an email to the system administrator.
How do you implement this requirement?

  • A. Configure an error handling process that displays the error message and sends an email.
  • B. Configure an activity's input source as the error message and the output as an email.
  • C. Reuse the out-of-the-box ConnectionProblem error handling flow on the Service tab for the connector.
  • D. Create an error handler data transform that adds an error message to the data page and sends an email.

Answer: A

Explanation:
The requirement is to handle an error when it occurs and perform two actions: display a message to the user and send an email to the administrator. This can be done by configuring an error handling process that encapsulates both actions. Typically, this would involve configuring a flow or an activity that runs when an error occurs, and it would handle both displaying the error message to the user and sending the email. Reference: Pega Platform Help - Error Handling.


NEW QUESTION # 32
......

Genuine PEGACPSSA23V1 Exam Dumps Free Demo Valid QA's: https://torrentvce.exam4free.com/PEGACPSSA23V1-valid-dumps.html