PDF問題(2025年最新)実際のSalesforce Platform-App-Builder日本語試験問題 [Q10-Q26]

Share

PDF問題(2025年最新)実際のSalesforce Platform-App-Builder日本語試験問題

問題集返金保証付きのPlatform-App-Builder日本語問題集には90%オフされます

質問 # 10
アプリ ビルダーは Testimonial__c というカスタム オブジェクトを作成しており、Testimonial__c レコードを送信者の連絡先レコードと取引先レコードの両方に接続したいと考えています。アカウントが削除された場合は、Testimonial__c も削除する必要があります。連絡先が削除されてもアカウントが残っている場合、Testimonial__c は残るはずです。
これはどのように達成すべきでしょうか?

  • A. Testimonial__c から Account への主従関係、および Testimonial__c から Contact への参照関係を作成します。
  • B. Testimonial__c オブジェクトに Contact フィールドと Account フィールドの両方を必須にし、Testimonial__c から Contact および Account への参照関係を作成します。
  • C. Testimonial__c から Account への参照関係、および Testimonial__c から Contact への主従関係を作成します。
  • D. マスター詳細関係を使用して、Testimonial__c を取引先と連絡先の間のジャンクション オブジェクトにします。

正解:A

解説:
To connect Testimonial__c records with both the submitter's Contact record and Account record, an app builder should create a master-detail relationship from Testimonial__c to Account and a lookup relationship from Testimonial__c to Contact. A master-detail relationship creates a parent-child relationship between two objects and allows for roll-up summary fields, sharing settings, and cascading actions. A lookup relationship creates a loose association between two objects and allows users to relate records from one object to another. Source


質問 # 11
アプリ ビルダーは、運用環境と完全に一致するフル コピー サンドボックスにアンマネージド パッケージをインストールします。これで、それを運用環境にインストールする準備が整います。アプリビルダーが実稼働環境にパッケージをインストールしようとすると、失敗します。
パッケージのインストールに失敗したのはなぜですか?

  • A. Apex 単体テストの失敗
  • B. パッケージ機能に互換性がありません
  • C. オブジェクトの制限を超えました
  • D. ライセンスの種類が正しくありません

正解:A

解説:
Apex unit test failures can cause a package installation to fail. According to the Salesforce documentation, "If your package contains Apex code, all tests must complete successfully for your package to install." Incorrect license types, package features not compatible, and object limits exceeded are not valid reasons for a package installation failure.


質問 # 12
Universal Containers は、履歴書の有無にかかわらず求人応募を表示するレポートを作成したいと考えています。
カスタム レポート タイプを作成する際、アプリ ビルダーはどのような考慮事項に注意する必要がありますか?

  • A. カスタム オブジェクトまたは外部オブジェクトが削除されると、レポート タイプとレポートは残りますが、レポートの実行時にエラーが発生します。
  • B. カスタム レポート タイプが保存されると、プライマリ オブジェクトの選択はロックされます。
  • C. アプリ ビルダーは、権限のないオブジェクトのカスタム レポート タイプを作成できません。
  • D. レポート タイプは、一度デプロイされると削除できません。

正解:B

解説:
The primary object selection is locked once the custom report type has been saved. This means that the app builder cannot change the primary object later. The other options are not true.


質問 # 13
Universal Containersは、販売された製品に関する詳細をキャプチャするために、Componentと呼ばれるカスタムオブジェクトを作成しました。
コンポーネントを製品の関連リストとして表示するには、アプリビルダーはどのようなアプローチを取る必要がありますか?

  • A. 製品とコンポーネントのマスター/詳細関係を作成します。コンポーネント関連リストを製品ページレイアウトに追加します。
  • B. コンポーネントから製品へのルックアップ関係を作成します。コンポーネント関連リストを製品ページレイアウトに追加します。
  • C. 製品にロールアップを作成します。コンポーネント関連リストを製品ページレイアウトに追加します。
  • D. コンポーネントと製品を関連付けるジャンクションオブジェクトを作成します。コンポーネント関連リストを製品ページレイアウトに追加します。

正解:A、B


質問 # 14
Cloud Kicksには、ユーザーとキューが所有するリードがあります。営業マネージャーは、ユーザーが所有権を取得したときにステータスを「作業中」に変更することを望んでいます。
プロセスがエラーなしで実行されることを保証するために、アプリビルダーは基準に何を含める必要がありますか?

  • A. [Lead] .Owner:User.Role Is Null = False
  • B. BEGINS([Lead] .OwnerId 、,, 005 ")
  • C. [Lead] .Owner:Queue.OwnerId Is Null = True
  • D. NOT(ISBLANK([Lead] .OwnerId))

正解:D


質問 # 15
UVCのApp Builderは、ユーザーが標準ボタンを上書きして、アカウント関連リストに新しいレコードを作成できないようにしたいと考えています。
標準のボタンをオーバーライドする前に、App Builderで検討すべき2つはどれですか。

  • A. Visualforceページで標準ボタンをオーバーライドできます
  • B. オーバーライドに使用できない標準ボタンは、ページレイアウトで非表示にできます
  • C. 標準ボタンは、ルックアップダイアログ、リストビュー、および検索結果のレイアウトで変更できます
  • D. 標準ボタンを上書きし、詳細ページに再配置し、ラベルを変更できます

正解:A、B

解説:
Explanation
The app builder should consider two things before overriding standard buttons:
Standard buttons can be overridden with a Visualforce page. A Visualforce page is a web page that displays custom user interface elements using Visualforce markup and Apex code. A Visualforce page can be used to override a standard button and provide custom functionality or logic3.
Standard buttons that are not available for overrides can still be hidden on page layouts. A page layout is a layout that determines how fields, related lists, and buttons are arranged on a record detail or edit page. A page layout can be used to hide a standard button that cannot be overridden by removing it from the layout4. Option A and D are not things that the app builder should consider before overriding standard buttons.


質問 # 16
Universal Containers は、Reviews と呼ばれるカスタム オブジェクトを使用して、候補者プロセス中に面接官によって生成された情報を取得します。レビュー レコードは、関連するカスタム候補者レコードにアクセスできるすべてのユーザーに表示されます。人事担当副社長は、レビューのコメント フィールドを MR 部門以外には非公開にしたいと考えています。アプリ ビルダーはこの要件をどのように満たすべきでしょうか?

  • A. HR ユーザー用のフィールドを含むページ レイアウトと、他のすべてのユーザー用のフィールドを含まない別のページ レイアウトを作成します。
  • B. 役割および部下を持つ人事担当副社長とフィールドを共有する共有ルールを作成します。
  • C. フィールドを含むページ レイアウトを作成し、フィールド レベルのセキュリティを使用して他のすべてのユーザーからフィールドを非表示にします。
  • D. ロールに「MR」を持つユーザと項目を共有するための Apex 共有ルールを作成します。

正解:C

解説:
Create a page layout with the field and use field-level security to hide the field from all other users is how the app builder should meet the requirement of making the comment field on Review private to anyone outside of HR department. Field-level security can control which profiles can view or edit a field on a record. Create an Apex sharing rule, create a sharing rule to share the field with VP of HR with Role and Subordinates, and create a page layout with the field for HR users and another page layout without the field for all other users are not valid or feasible solutions for this requirement.


質問 # 17
コンテナでは、取引先オブジェクトの組織全体のデフォルトが非公開に設定されています。マーケティング チームは取引先を所有していますが、営業チームの取引先も表示できる必要があります。営業チームとマーケティング チームはどちらも、ルーチン階層のまったく異なるブランチにあります。
マーケティング部門が営業部門所有のアカウントを確認できるようにするには、どの機能を使用する必要がありますか。

  • A. パブリックグループ
  • B. 共有ルール
  • C. フロー
  • D. ワークフロー

正解:B

解説:
Sharing rules can be used to extend access to records owned by certain users or roles to other users or roles. In this case, a sharing rule can grant read-only or read/write access to sales-owned accounts to the marketing team


質問 # 18
DreamHouse Realty は、物件レコードを外部システムから Salesforce にインポートしたいと考えています。アプリ ビルダーは、外部 ID フィールドを使用して、外部システムからのプロパティ ID を格納します。
外部 ID フィールドを使用する際にアプリ ビルダーが知っておくべき 2 つの詳細はどれですか?
2つの答えを選択してください

  • A. 外部 ID フィールドは電話フィールドにすることができます。
  • B. 外部 ID フィールドは数値フィールドにすることができます。
  • C. 外部 ID フィールドは URL フィールドにすることができます。
  • D. 外部 ID フィールドはテキスト フィールドにすることができます。

正解:B、D


質問 # 19
カスタムレポートタイプの作成に関する正しい説明は何ですか? A.プライマリオブジェクトがカスタムオブジェクトであり、削除された場合、レポートタイプとそれから作成されたレポートは手動で削除する必要があります

  • A. プライマリオブジェクトがカスタムオブジェクトであり、削除された場合、レポートタイプとそれから作成されたレポートは手動で削除する必要があります
  • B. レポートタイプを標準またはカスタムのプライマリオブジェクトとともに保存すると、そのレポートタイプのプライマリオブジェクトを変更することはできません。
  • C. マスター/詳細関係の詳細オブジェクトをカスタムレポートタイプのセカンダリオブジェクトとして追加することはできません
  • D. セキュリティ設定でレポートタイプを作成する人にオブジェクトが表示されない場合を除き、任意のオブジェクトを選択できます

正解:B


質問 # 20
Cloud Kicks は最近、アプリケーション ライフサイクル管理プロセスをリリース管理戦略に実装しました。
バグ修正と単純な変更を処理するのはどのカテゴリですか?

  • A. メジャー
  • B. ロールバック
  • C. パッチ
  • D. マイナー

正解:C


質問 # 21
アプリビルダーは、フィールドの長さが6文字を超える場合にエラーをスローする業界フィールドにアカウント検証ルールを作成します。別のApp Builderは、Billing CityフィールドがSan Franciscoに設定されるたびに、IndustryフィールドをTechnologyに設定するフィールド更新を含むワークフロールールを作成します。営業担当者が次にサンフランシスコの請求先市にアカウントを保存するとどうなりますか?

  • A. レコードは保存されず、エラーメッセージは表示されません
  • B. レコードは保存され、業界フィールドはテクノロジーに変わります
  • C. レコードは保存されますが、業界フィールドはテクノロジーに変更されません
  • D. レコードは保存されず、検証ルールのエラーメッセージが表示されます

正解:D

解説:
The record will not save and the validation rule's error message will be displayed because the field update will violate the validation rule. The validation rule will prevent the record from being saved if the Industry field is longer than 6 characters, and Technology is 10 characters long.


質問 # 22
Cloud Kicks のアプリ ビルダーは、スキーマ ビルダーでカスタム オブジェクトと関連フィールドを作成しました。
ユーザーが新しいオブジェクトとフィールドに確実にアクセスできるようにするには、アプリの構築で次のどのような手順を実行する必要がありますか?

  • A. オブジェクトとフィールドのレポートを許可します。
  • B. オブジェクトのページ レイアウトにフィールドを追加します。
  • C. オブジェクトのフィールドにデータ型を割り当てます。
  • D. オブジェクトとフィールドにアクセスするための権限セットを作成します。

正解:B

解説:
The app builder should add the fields to the page layout on the object to ensure users can access the new object and fields. The page layout determines which fields are visible and editable on the record detail page. Option A, B, and C are not necessary for this purpose.


質問 # 23
カスタムオブジェクトを作成するときのスキーマビルダーの制限は何ですか?

  • A. 新しいオブジェクト、フィールド、またはリレーションシップが作成されるたびに、[保存]をクリックする必要があります。
  • B. カスタムフィールドは、数式フィールドタイプを除く任意のカスタムオブジェクトに追加できます。
  • C. 任意のカスタムオブジェクトとの関係を作成できますが、標準オブジェクトとの関係はLightning ObjectManagerで構築する必要があります。
  • D. フィールドとリレーションシップは作成できますが、キャンバスからページレイアウトにフィールドを追加することはできません。

正解:D


質問 # 24
DreamHouse Realty のアプリ ビルダーは、関連するルックアップを介して 2 つの異なるオブジェクトからのデータを含むフィールドを持つカスタム オブジェクトを作成しました。
新しいカスタム オブジェクトに関するレポートを「あり」または「なし*」で作成するには何が必要ですか?

  • A. カスタム レポート タイプ
  • B. 行レベルの式
  • C. レポートフィルター
  • D. レポート バケット フィールド

正解:A

解説:
To create "with" or "without" reports on the new custom object, a custom report type is needed. A custom report type defines the relationship between one or more standard or custom objects for reporting purposes. It allows users to select which fields they want to display in their reports and filter by related objects.


質問 # 25
アプリビルダーはカスタム ソリューションを必要としており、コミュニティの使用を検討しています。更新の容易さが主な考慮事項です。
アプリビルダーは何を考慮すべきでしょうか?

  • A. AppExchange からの管理パッケージ
  • B. オープンソースのカスタム開発
  • C. AppExchange の非管理パッケージ
  • D. オープンソースのアンマネージドパッケージ

正解:A

解説:
A managed package from AppExchange is a custom solution that is developed by a third-party provider and can be installed in Salesforce. A managed package can be easily updated by the provider without affecting the existing functionality or customizations. This makes it suitable for the app builder's requirement of ease of updates. Option B, C, and D are not as easy to update as a managed package.


質問 # 26
......

更新された2025年04月合格させるPlatform-App-Builder日本語試験リアル練習テスト問題:https://jp.fast2test.com/Platform-App-Builder-JPN-premium-file.html


弊社を連絡する

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

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

サポート: 現在連絡 

English Deutsch 繁体中文 한국어