[2024年08月08日]PEGACPSSA23V1テスト準備できるトレーニング練習テスト試験問題 [Q87-Q105]

Share

[2024年08月08日]PEGACPSSA23V1テスト準備できるトレーニング練習テスト試験問題

試験問題解答ブレーン問題集でPEGACPSSA23V1試験問題集PDFを使おう

質問 # 87
A view has a part number field that requires the first two characters are letters, and the last four are digits (for example, AB1234).
How do you ensure that the correct pattern is entered when the user exits the field?

  • A. Configure an edit validate rule and reference it from the property rule for the field.
  • B. Configure a validate rule to use input-qualified validation configuration.
  • C. Configure an edit validate rule and call it from a validate rule in the relevant flow action.
  • D. Configure a validate rule on the flow action to validate the field with boolean logic.

正解:A

解説:
To ensure that the correct pattern is entered for a part number field, configure an edit validate rule and reference it from the property rule for the field. The edit validate rule can be set up to check that the first two characters are letters and the last four are digits. Reference: Pega official documentation on property rules and edit validate rules.


質問 # 88
Your application contains the following versions of a service level named AuthorizeClaim.

The application is being updated with a new version of the AccountManage ruleset. As part of the update, the service level is no longer circumstanced for AccountOpen cases. The update must retain the circumstancing for the other case types in the application.
Which option do you use to reset the circumstancing for the AccountOpen case type?

  • A. Withdraw the circumstanced rules in the AccountOpen class.
  • B. Make the circumstanced rules in the AccountOpen class unavailable.
  • C. Copy the non-circumstanced rule to the AccountOpen class and select the base rule option.
  • D. Block the circumstanced rules in the AccountOpen class.

正解:A

解説:
Withdrawing the circumstanced rules in the AccountOpen class is the correct action to stop using a circumstanced rule. This allows the non-circumstanced (or base) rule to be used instead without affecting other circumstanced versions of the rule for different case types. References: Pega Platform Help - Withdrawing a rule.


質問 # 89
A courier company wants to create a mobile app to scan and track the parcels collected from remote areas that are without internet access. Which mobile app do you develop to fulfill the requirement?

  • A. Signed app
  • B. Unsigned app
  • C. Native app
  • D. SDK app

正解:C

解説:
A native app is suitable for remote areas without internet access because it can be installed on the device and has the capability to function offline. This allows the courier company employees to scan and track parcels regardless of internet connectivity. References: Pega Mobile Client Developer Guide.


質問 # 90
In the following example, the Homelns, Homelnslnt, and Customer rulesets are configured for application validation. MyCo and MyCoInt are configured for ruleset validation. MyCo lists MyCoInt and Customer as its prerequisites, and the prerequisite for MyCoInt is Pega-ProcessCommander.
Which of the following statements is correct?

  • A. Rules in MyCoInt can reference rules in Customer.
  • B. Rules in Customer can reference rules in Homelns.
  • C. Rules in MyCo can reference rules in Homelnslnt.
  • D. Rules in MyCo can reference rules in Homelns.

正解:D

解説:
In Pega's ruleset hierarchy, a ruleset can reference rules in its own ruleset as well as in any prerequisites (and their prerequisites, recursively). Since MyCo lists MyCoInt and Customer as its prerequisites and MyCoInt, in turn, lists Pega-ProcessCommander (which is not relevant here), MyCo can reference rules in both Homelns and HomelnsInt. However, since only Homelns is explicitly mentioned in the options, the correct answer is that MyCo can reference rules in Homelns. Reference: Pega SSA course materials on ruleset hierarchy and ruleset validation.


質問 # 91
A flow action calls a pre-processing data transform to initiate values. There are several flow actions available for the assignment. You want to make sure that the values are only initiated once for each flow action.
How do you implement a solution?

  • A. Make sure that the flow action does not have the highest likelihood since it will always be invoked.
  • B. Configure the data transform as post-processing instead of pre-processing.
  • C. Do nothing. The pre-processing data transform is only called once for each assignment.
  • D. Add logic to the pre-processing data transform to test if values were already initiated.

正解:D

解説:
To ensure that the values are only initiated once for each flow action, add logic to the pre-processing data transform to test if the values were already initiated (A). This logic can prevent the reinitialization of values that have already been set, allowing the pre-processing to only set default values when they are not present, avoiding any unwanted overwrites or duplications of effort.Reference: Pega Community documentation on data transforms and flow action pre-processing.


質問 # 92
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. Database Trace
  • B. Performance Analyzer (PAL)
  • C. Performance Profiler
  • D. Tracer

正解:B

解説:
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.


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

正解:B

解説:
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. References: Pega Platform Help - Pega Web Mashup.


質問 # 94
A budgeting application uses a job scheduler to automatically email customers once a week with a breakdown of their weekly expenses. Due to the international usage of the application, stakeholders require peak performance at all hours.
Which solution addresses this performance concern?

  • A. Ensure that customers use a common access group.
  • B. Configure the job scheduler to run at off-hours.
  • C. Limit the number of operators who can access the application.
  • D. Dedicate and classify a node for the job scheduler.

正解:D

解説:
Dedicating and classifying a node for the job scheduler allows the job scheduler to run on a node that is optimized for batch processing. This ensures that resource-intensive jobs do not impact the performance of the user nodes, thus maintaining peak performance at all hours. Reference: Pega Platform Help - Job Schedulers.


質問 # 95
You are sending information to an external system of record by using a connector. What do you use to implement this requirement?

  • A. Configure a service rule and listener.
  • B. Call a connector from a Save data page step.
  • C. Create a new external data source.
  • D. Reference a connector from a data transform.

正解:D

解説:
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. References: Pega Platform Help - Connectors.


質問 # 96
What is the difference between using the Call and Branch methods in an activity step to invoke other activities?

  • A. Branch overrides the security restrictions of the called activity allowing you to easily test code; it will not run in production.
  • B. Call returns to the originating activity, while Branch skips the remainder of the originating activity.
  • C. Call provides more robust debugging capability than Branch, while Branch provides better run-time performance.
  • D. Branch creates a new thread to allow asynchronous processing, while Call runs in the thread from it was invoked.

正解:B

解説:
The difference between using the Call and Branch methods in an activity step to invoke other activities is that Call will return to the originating activity once the called activity completes, while Branch will not return to the originating activity and will skip the remainder of it after the called activity completes. Reference: Pega official documentation on activity methods.


質問 # 97
What is the function of class mapping for reports?

  • A. Create a new Database table record for a Pega Platform class.
  • B. Retrieve data from an associated database table.
  • C. Assign an ID to a class so reports can reference specific properties.
  • D. Ensure all data from one report belongs to a single Case type instance.

正解:B

解説:
The function of class mapping for reports is to retrieve data from an associated database table. Class mapping determines which table data is pulled from when running a report, ensuring that the report includes the appropriate data based on the class structure. References: Pega official documentation on class mapping and reporting.


質問 # 98
An application includes the following set of circumstanced instances of a decision table.

You update the application and increment the AccountManage ruleset version to 01-02-01. As part of this update, the circumstance .Status="Silver" is no longer needed by the application.
How do you implement this change?

  • A. Create a new version of the circumstanced decision table in AccountManage:01-02-01 and set the availability of the rule to Withdrawn.
  • B. Do nothing. Rule resolution does not consider rules in a lower minor version of a ruleset.
  • C. Create a new version of the circumstanced decision table in AccountManage:01-02-01 and set the availability of the rule to Blocked.
  • D. Create a new version of the circumstanced decision table in AccountManage:01-02-01 and select the Base rule option.

正解:C


質問 # 99
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.

正解:

解説:


質問 # 100
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. Update the report using GET/cases
  • D. Log into the application using PUT/authenticate

正解:A、B

解説:
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.


質問 # 101
Drag the name of the Pega Platform log file appender from the left to the matching use case on the right.

正解:

解説:


質問 # 102
A fitness organization wants to ensure that data is entered correctly into an online form when users apply for, or update, their membership information.
Which scenario requires an edit validate rule?

  • A. New members must be at least 18 years of age at the time they sign up for membership.
  • B. The customer first and last name must be combined to create the full name.
  • C. The credit card number must be entered in the correct format for the payment type.
  • D. The customer email address must match the expected format.

正解:C

解説:
An edit validate rule is used to ensure that data is entered in a specific format. For membership numbers that need to match a particular pattern (M-######-0#), an edit validate rule would be the appropriate mechanism to enforce this format upon entry. References: Pega Platform Help - Edit Validate.


質問 # 103
Which two configurations must you make when you add a Split for Each shape to your case life cycle? (Choose Two)

  • A. Define when the parent process resumes processing.
  • B. Define a condition to control when the flow runs for each iteration of the subprocess.
  • C. Enter a unique name for the shape in the Split for Each field.
  • D. Enter the Page List or Page Group property that is the basis of the split.

正解:A、D

解説:
When adding a Split for Each shape to your case life cycle, you must specify the Page List or Page Group property that forms the basis of the split and define when the parent process resumes processing after the iterations of the subprocess are complete. Reference: Pega Platform Help - Case Design.


質問 # 104
Which two tasks are required to build a mobile app from a Pega Platform application? (Choose Two)

  • A. Configure access to Dev Studio.
  • B. Create a certificate set.
  • C. Set up push notifications to developers.
  • D. Configure access to the Pega Mobile Build Server.

正解:B、D

解説:
Building a mobile app from a Pega Platform application requires configuring certain key components for security and connectivity. Creating a certificate set (A) is essential for securing the app, ensuring that communications between the mobile app and the server are encrypted and authenticated. Configuring access to the Pega Mobile Build Server (B) is necessary for the app build and distribution process, allowing the Pega application to package and deploy mobile apps through Pega's cloud-based build service.Reference: Pega Community documentation on mobile app development and deployment.


質問 # 105
......

無料ダウンロードPegasystems PEGACPSSA23V1リアルな試験問題で合格しよう:https://jp.fast2test.com/PEGACPSSA23V1-premium-file.html


弊社を連絡する

我々は12時間以内ですべてのお問い合わせを答えます。

我々の働いている時間: ( GMT 0:00-15:00 )
月曜日から土曜日まで

サポート: 現在連絡 

English Deutsch 繁体中文 한국어