[2022年01月29日] 365日無料更新DEX-450知能問題集をゲット [Q195-Q211]

Share

[2022年01月29日] 365日無料更新DEX-450知能問題集をゲット

ベスト品質のSalesforce DEX-450試験問題


Salesforce DEX-450 認定試験の出題範囲:

トピック出題範囲
トピック 1
  • 子と親および親と子の関係をトラバースするクエリを作成します
  • ロールアップサマリーフィールドの作成
トピック 2
  • カスタムコントローラーとコントローラー拡張機能の参照
  • Apex |でsObjectデータ型、プリミティブデータ型、および基本的な制御ステートメントを使用します。
トピック 3
  • Apexでクエリの結果を処理する
  • レコードタイプを理解する
  • トリガーコンテキスト変数を使用する
トピック 4
  • Visualforce開発の考慮事項とテスト
  • Apexクラスがアクセスできるデータを決定する
トピック 5
  • 保守と拡張が容易なコードを記述するためのプラクティスを説明する
  • データのバッチを入力として想定するトリガーとクラスを書き込む
トピック 6
  • トリガーがSalesforceプラットフォームでの実行
  • データモデルの構築の順序にどのように適合し、影響を受ける可能性があるかを説明する
トピック 7
  • アクションメソッド、ゲッター、セッター、およびプロパティのテストを作成します
  • DML操作を呼び出す方法の違いを一覧表示します
トピック 8
  • トリガー定義の構文を説明する
  • Visualforceページのレコードからデータを表示する

 

質問 195
A Licensed_Professional__c custom object exist in the system with two Master-Detail fields for the following objects: Certification__c and Contact. Users with the "Certification Representative" role can access the Certification records they own and view the related Licensed Professionals records, however users with the "Salesforce representative" role report they cannot view any Licensed professional records even though they own the associated Contact record. What are two likely causes of users in the "Sales Representative" role not being able to access the Licensed Professional records? Choose 2 answers

  • A. The organization has a private sharing model for Certification__c, and Certification__c is the primary relationship in the Licensed_Professional__c object. (Missed)
  • B. The organization has a private sharing model for Certification__c, and Contact is the primary relationship in the Licensed_Professional__c object
  • C. The organization's sharing rules for Licensed_Professional__c have not finished their recalculation process. (Missed)
  • D. The organization recently modified the Sales representative role to restrict Read/Write access to Licensed_Professional__c

正解: A,D

 

質問 196
What is the value of x after the code segment executes?String x = 'A';Integer i = 10;if ( i < 15 ) {i = 15;x = 'B';} else if ( i < 20 ) {x = 'C';} else {x = 'D'; }

  • A. B
  • B. A
  • C. C
  • D. D

正解: A

 

質問 197
Opportunity opp=[SELECT Id,StageName FROM Opportunity LIMIT 1]; Given the code above,how can a developer get the label for the StageName field?

  • A. Call Opp.StageName.Label
  • B. Call Opportunity.StageName.Label
  • C. Call Opp.StageName.getDescri
  • D. Call Opportunity.StageName.getDescribe().getLabel()

正解: D

 

質問 198
A developer needs to test an Invoicing system integration. After reviewing the number of transactions required for the test, the developer estimates that the test data will total about 2 GB of data storage. Production data is not required for the integration testing.
Which two environments meet the requirements for testing? (Choose two.)

  • A. Developer Sandbox
  • B. Developer Edition
  • C. Full Sandbox
  • D. Partial Sandbox
  • E. Developer Pro Sandbox

正解: C,D

 

質問 199
Which feature allows a developer to create test records for use in test classes?

  • A. Static resources
  • B. Httpcalloutmocks
  • C. Webservicetests
  • D. Documents

正解: C

 

質問 200
When an Account's custom picklist field called Customer Sentiment is changed to a value of "Confused", a new related Case should automatically be created.
Which two methods should a developer use to create this case? (Choose two.)

  • A. Process Builder
  • B. Workflow Rule
  • C. Apex Trigger
  • D. Custom Button

正解: A,C

 

質問 201
What is the result of the debug statements in testMethod3 when you create test data using testSetup in below code?

  • A. Account0.Phone=888-1515, Account1.Phone=999-1515
  • B. Account0.Phone=333-8781, Account1.Phone=333-8780
  • C. Account0.Phone=333-8780, Account1.Phone=333-8781
  • D. Account0.Phone=888-1515, Account1.Phone=999-2525

正解: C

 

質問 202
A team of developers is working on a source-driven project that allows them to work independently, with many different org configurations. Which type of Salesforce orgs should they use for their development?

  • A. Developer sandboxes
  • B. Developer orgs
  • C. Full Copy sandboxes
  • D. Scratch orgs

正解: D

 

質問 203
A developer must implement a CheckPaymentProcessor class that provides check processing payment capabilities that adhere to what defined for payments in the PaymentProcessor interface. public interface PaymentProcessor { void pay(Decimal amount); } Which is the correct implementation to use the PaymentProcessor interface class?

  • A. Public class CheckPaymentProcessor extends PaymentProcessor {
    public void pay(Decimal amount) {}
    }
  • B. Public class CheckPaymentProcessor extends PaymentProcessor {
    public void pay(Decimal amount);
    }
  • C. Public class CheckPaymentProcessor implements PaymentProcessor {
    public void pay(Decimal amount);
    }
  • D. Public class CheckPaymentProcessor implements PaymentProcessor {
    public void pay(Decimal amount) {}
    }

正解: D

 

質問 204
What is a capability of the Developer Console?

  • A. Execute Anonymous Apex code, Create/Edit code, view Debug Logs.
  • B. Execute Anonymous Apex code, Run REST API, create/Edit code.
  • C. Execute Anonymous Apex code, Run REST API, deploy code changes.
  • D. Execute Anonymous Apex code, Create/Edit code, Deploy code changes.

正解: A

 

質問 205
On a Visualforce page with a custom controller, how should a developer retrieve a record by using an ID that is passed on the URL?

  • A. Create a new PageReference object with the Id.
  • B. Use the $Action.View method in the Visualforce page.
  • C. Use the tag in the Visualforce page.
  • D. Use the constructor method for the controller.

正解: D

 

質問 206
Universal Containers (UC) has an integration with its Accounting system that creates tens of thousands of Orders inside of Salesforce in a nightly batch. UC wants to add automaton that can attempt to match Leads and Contacts to these Orders using the Email Address field on the insert. UC is concerned about the performance of the automation with a large data volume. Which tool should UC use to automate this process?

  • A. Workflow Rules
  • B. Process Builder
  • C. Process Builder with an Autolaunched Flow
  • D. Apex

正解: D

 

質問 207
What must the Controller for a Visualforce page utilize to override the Standard Opportunity view button?

  • A. The Opportunity StandardController for pre -built functionality.
  • B. A constructor that initializes a private Opportunity variable.
  • C. A callback constructor to reference the StandardController.
  • D. The StandardSetController to support related lists for pagination.

正解: A

 

質問 208
A development team wants to use a deployment script to automatically deploy to a sandbox during their development cycles. Which tool should they use to deploy to the sandbox?

  • A. Ant Migration Tool
  • B. VSCode
  • C. Change Sets
  • D. Developer Console

正解: A

 

質問 209
How should a custom user interface be provided when a user edits an Account in Lightning Experience?

  • A. Override the Account's Edit button with Lightning Flow
  • B. Override the Account's Edit button with Lightning component.
  • C. Override the Account's Edit button with Lightning Action
  • D. Override the Account's Edit button with Lightning page.

正解: B

 

質問 210
A developer needs to create a custom visualforce button for the opportunity object page layout that will cause a web service to be called and redirect the user to a new page when clicked. Which three attributes need to be defined in the <apx:page> tag of the visualforce page to enable this functionality?

  • A. Readonly
  • B. AcTion
  • C. Extensions
  • D. Standardcontroller
  • E. Renderas

正解: B,C,D

 

質問 211
......

Salesforce試験練習テスト問題で高得点を目指そう:https://www.goshiken.com/Salesforce/DEX-450-mondaishu.html

検証された材料は決まってこれ!DEX-450:https://drive.google.com/open?id=1CF90prQ9XO8dMOUixj-yHzwjS8M8Jp2a