Pegasystems PEGACLSA_62V2 試験概要:
| 認定ベンダー: | Pegasystems |
| 試験名: | Certified Lead System Architect (CLSA) 6.2V2 |
| 試験番号: | PEGACLSA_62V2 |
| 受験料: | 300~500米ドル(地域により異なる) |
| 合格点: | 約70% |
| 試験時間: | 240~480 |
| 対応言語: | 英語 |
| 認定の有効期間: | 3年間 |
| 出題数: | 設問数は可変、シナリオ形式 |
| 関連資格: | Pega Certified Senior System Architect (CSSA) Pega Certified System Architect (CSA) |
| 試験形式: | シナリオ形式の設問, 単一選択式・複数選択式の多肢選択問題, アーキテクチャ設計の評価, 実践的なアプリケーション構築 |
| 推奨トレーニング: | Pega Academy CLSA取得準備トレーニング |
| 受験申し込み: | Pearson VUE 試験申込みページ Pega Academy 認定資格案内ページ |
| サンプル問題: | Pegasystems PEGACLSA_62V2 サンプル問題 |
| 受験方法: | 複数の評価項目で構成:オンライン監督付きのアーキテクチャ設計試験および実践的なアプリケーション構築課題。Pega AcademyおよびPearson VUEにて実施 |
| 前提条件: | 有効なPega Certified Senior System Architect (CSSA)の資格を保有し、CLSA取得に必要な事前要件を満たしていること |
| 公式シラバスのURL: | https://academy.pega.com/certifications/lead-system-architect |
Pegasystems PEGACLSA_62V2 試験シラバストピック:
| セクション | 比重 | 目標 |
|---|---|---|
| ケース設計および業務プロセスアーキテクチャ | 13% | - 複雑なケースのライフサイクルモデリング - ステージ、ステップ、SLAの設定 - プロセスの再利用性と継承 |
| データモデルおよびアーキテクチャ | 8% | - クラス構造とデータベースのマッピング - データページとキャッシュの方針 - データの永続化と整合性の確保 |
| バックグラウンド処理およびパフォーマンス | 10% | - 高可用性と拡張性の確保 - パフォーマンスの調整と最適化 - エージェント、キュー、非同期処理 |
| 導入、テストおよび管理体制 | 15% | - テストと品質保証 - 導入方針とブランチの管理 - バージョンアップと保守計画 |
| セキュリティおよびアクセス制御 | 13% | - 役割別アクセス制御 - セキュリティ上の推奨事項とコンプライアンス - 認証および権限管理 |
| レポーティングおよび意思決定支援機能 | 8% | - レポートの定義と最適化 - ビジネスインテリジェンスシステムとの連携 - 意思決定ルールと戦略 |
| エンタープライズアプリケーションアーキテクチャ | 17% | - アーキテクチャの管理方針とレビュー - フレームワークおよび実装の階層構造 - 状況別レイヤー構造の設計 |
| ユーザーエクスペリエンスの設計 | 8% | - ポータルと画面の設定 - アクセシビリティと使いやすさ - UIの設計パターンと再利用手法 |
| 資産の設計と再利用 | 8% | - ルールセットの構成とバージョン管理 - 推奨事項への準拠 - 再利用可能なコンポーネントとデザインパターン |
Pegasystems Certified Lead System Architect (CLSA) 6.2V2 認定 PEGACLSA_62V2 試験問題:
1. Review the following requirement:
A car loan application has a new requirement to track changes to the following properties during the lifecycle of the loan process (which can be many weeks and allows for updates to these properties at different points throughout the process).
Properties to Track:
Loan Amount
Car Value
Downpayment
The new requirement is to track all changes to these properties and send the previous value, current value and operator who made the change to a web service used for fraud detection. A second requirement is to spin-off a loan review process if the loan amount changes by more than 10%. This review process occurs in parallel to the primary process.
Given the above requirements which of the following approaches is most appropriate? (Choose One)
A) Use a declare on-change rule to track all of the properties and execute the web services. Also utilize the process override functionality, in conjunction with a when rule to check for the 10% change, to execute the review process
B) Use the property auditing landing page and its configuration options to track the property changes and call the appropriate web service. Also, create an additional declare on-change rule to check for the 10% change and start the review process
C) Use a declare trigger to check for changes to the properties and copy the previous values to three additional properties. In the activity called by the trigger execute the web services and determine, using a when rule, if the 10% change has occured, if so execute the review flow
D) Use a declare on-change rule to look for changes in the three properties and then execute the appropriate web service. Use a separate trigger to track the change in loan amount and start the review process flow if the change is more than 10%
2. In a PRPC application the Collect Information section has three tabs: Personal Details, Transaction History and Comments. When the user is working on the case they will open the transaction history only when it's required. What is the preferred design you will do to make the screen render faster? (Choose One)
A) Disable the transaction history tab and use a visible when condition that uses run on client to enable the transaction tab when required
B) Modify the layout to use accordion because transaction history need not be displayed unless its required
C) Enable Refresh When active flag so it refreshes the list when accessed
D) Enable Defer Load, so the page loads only with the contents in the active tab
3. What is TRUE about the PRPC command line utility that imports and exports archives? (Choose One)
A) It cannot use a Rule-Admin-Product to export rules
B) It is installed with PRPC by default
C) It does not require the Pega-ImportExport agent running
D) It communicates with the source and target systems over SOAP
4. Which of the following examples best demonstrate proper use of Declare Page rules? (Choose Two)
A) To periodically poll external data for changes that will then trigger the recalculation of declarative expressions
B) To retrieve data, when necessary, from an external service that is related to the current work object (such as accident reports for a driver)
C) To create a "Most Recently Used" (MRU) caching mechanism for external database queries
D) To cache (at a node level) a small list of reference data that is expensive to retrieve
E) To cache (at a node level) an extremely large list of reference data that is infrequently referenced
5. Which of the following is NOT a typical use-case for the Package Work wizard? (Choose One)
A) To archive work items
B) To move work items that are part of the application itself
C) To move work items from a production to a test system to debug an issue
D) To move work items created on a local PRPC system to a central PRPC system
質問と回答:
| 質問 # 1 正解: C | 質問 # 2 正解: D | 質問 # 3 正解: C | 質問 # 4 正解: B、D | 質問 # 5 正解: A |














1241 お客様のコメント
品質保証JPexamはIT認定試験のシラバスに従って、試験問題の範囲を正確に絞って、的中率が99%の最新問題集を捧げます。
1年間の無料更新サービスJPexamは1年以内に問題集の無料更新サービスを提供し、お客様がいつでも最新版の問題集を持つことを保証いたします。もし試験の内容が変更されたら、弊社は直ちにお客様にお知らせします。それに、弊社の問題集が更新されたら、早速メールで最新バージョンを送付いたします。
全額返金JPexamの問題集を利用すると、短時間で勉強しても試験に合格できるのを保証いたします。試験に不合格になってしまった場合、弊社は全額返金いたします。(
ご購入前のお試しJPexamは問題集のサンプルを無料で提供いたします。ご購入前にサンプルを試用して製品の品質を確認することができます。ご遠慮なく利用してください。
