究極のガイドはPDII最新2026年02月07日時間限定!今すぐダウンロード! [Q13-Q29]

Share

究極のガイドはPDII最新2026年02月07日時間限定!今すぐダウンロード!

2026年最新のな厳密検証された合格させるPDII試験にはリアル問題と解答

質問 # 13
A developer is building a Visualforce page that interacts with external services.
Which interface should the developer implement to test this functionality? (Choose two.)

  • A. HTTPRequestMock
  • B. StaticResourceCalloutMock
  • C. HTTPCalloutMock
  • D. HTTPResponseMock

正解:B、C


質問 # 14
<lightning: layout multipleRows="true"> <lightning: layoutItem size="12">{!v.account.Name} </flighting:
layoutitem> <lightning:layoutitem 3ize="12">{!v. account .AccountNumber} </lighting: layoutitem>
<lightning: layoutitem size="12">{!v.account. Industry} </lighting: layoutitem> </lightning: layout> Refer to the component code above. The information displays as expected (in three rows) on a mobile device.
However, the information is not displaying as desired (in a single row) on a desktop or tablet. Which option has the correct component changes to display correctly on desktops and tablets?

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

正解:A


質問 # 15
A comply his reference data stored m multiple custom metadata records that represent del auh information and delete behavior for certain geographic regions.
When a contact is inserted, the default information should be set on the contact from the custom metadata records based on the contact's address information. Additionally, if a user attempts to delete a contact that belongs to a flagged region, the user must get an error message.
Depending on company personnel resources, what are two ways to
automate this?
Choose 2 answers

  • A. Flow Builder
  • B. Remote action
  • C. Apex trigger
  • D. Apex mvocaWe method

正解:A、C


質問 # 16
As part of their quoting and ordering process, a company needs to send PDFs to their document storage system's REST endpoint that supports OAuth 2.0. Each Salesforce user must be individually authenticated with the document storage system to send the PDF.
What is the optimal way for a developer to implement the authentication to the REST endpoint?

  • A. Hierarchy Custom Setting with an OAuth token custom field
  • B. Named Credential with Password Authentication
  • C. Hierarchy Custom Setting with a password custom field
  • D. Named Credential with an OAuth Authentication Provider

正解:D


質問 # 17
A company has a custom object, Order_ c, that has a custom picklist field, Status__ c, with values of New/ 'In Progress/ or 'Fulfilled' and a lookup field, Contact__ c, to Contact.
Which SOQL query will return a unique list of all the Contact records that have no 'Fulfilled' Orders?
A)

B)

C)

D)

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

正解:A


質問 # 18
Part of a custom Lightning component displays the total number of Opportunities in the org, which are in the millions. The Lightning component uses an Apex method to get the data it needs.
What is the optimal way for a developer to get the total number of Opportunities for the Lightning component?

  • A. SOQL for loop that counts the number of Opportunities records
  • B. Apex batch job that counts the number of Opportunity records
  • C. COUNT () SOQL aggregate query on the Opportunity object
  • D. SUM () SOQL aggregate query on the Opportunity object

正解:B


質問 # 19
Invokable methods accept sObjects as parameters

  • A. False
  • B. True

正解:A


質問 # 20
A developer is debugging an Apex-based order creation process that has a requirement to have three savepoints, SP1, SP2, and 5P3 {created in order), before the final execution of the process.
During the final execution process, the developer has a routine to roll back to SP1 for a given condition. Once the condition is fixed, the code then calls 2 roll back to SP3 to continue with final execution. However, when the roll back to SP3 is called, a Funtime error occurs.
Why does the developer receive a runtime error?

  • A. The developer should have called SF2 before calling SP3.
  • B. The developer used too many savepoints in one trigger session.
  • C. SP3 became invalid when SP1 was rolled back.
  • D. The developer has too many DML statements between the savepoints.

正解:C

解説:
Savepoints in Apex are markers within a transaction and rolling back to an earlier savepoint (SP1) invalidates any savepoints created after it. Thus, SP3 is invalidated when the code rolls back to SP1, causing a runtime error when a rollback to SP3 is attempted.References: Apex Developer Guide - Savepoint and Transaction Control


質問 # 21
A business process requires sending new Account records to an external system. The Account Name, Id, CreatedDate, and Created ById must be passed to the external system in near real-time when an Account is inserted without error.
How should a developer achieve this?

  • A. Use a Workflow rule that calls an @InvocableMethod method
  • B. Use a Process Builder that calls an @InvocableMethod method
  • C. Use a before insert trigger and a Queueable class
  • D. Use a before insert trigger and an @future method

正解:B


質問 # 22
Recently a Salesforce org's integration failed because it exceeded the number of allowed API calls in a 24-hour period. The integration handles a near real-time, complex insertion of data into Salesforce. The flow of data is as follows: * The integration looks up Contact records with a given email address and, if found, the integration adds a Task to the first matching Contact it finds. If a match is not found, the integration looks up Lead records with a given email address and, if found, the integration adds a Task to the first matching Lead it finds. * If a match is not found, the integration will create a Lead and a Task for that newly created Lead. What is one way in which the integration can stay near real-time, but not exceed the number of allowed API calls in a 24-hour period?

  • A. Create an Inbound Message that, using Flow, can do all of the logic the integration code was doing.
  • B. Create several Apex InboundEmailHandlers to accept calls from the third-party system, thus bypassing the API limits.
  • C. write a custom Apex web service that, given an email address, does all of the logic the integration code was doing.
  • D. Use the REST API as well as the SOAP API to effectively double the API calls allowed in a 24-hour period.

正解:B


質問 # 23
A company requires all internal users to submit a Case for adding a new Account in Salesforce. The case record captures all the data required to create an Account. The case approval process is a manual process.
When a case is approved, an Account record should automatically be created based on the case details. What is the recommended solution?

  • A. Develop an After Update trigger on Case to create an Account record based on Case Status.
  • B. Develop a Before Update trigger on Case to create an Account record based on Case Status.
  • C. Configure a custom button on the Case page to update the Case Status and insert a new Account record.
  • D. Develop a Lightning Process to create an Account Record when the Case status becomes Approved.

正解:D


質問 # 24
Recently a Salesforce org's integration failed because it exceeded the number of allowed API calls in a 24-hour period. The integration handles a near real-time, complex insertion of data into Salesforce.
The flow of data is as follows:
* The integration looks up Contact records with a given email address and, if found, the integration adds a Task to the first matching Contact it finds.
* If a match is not found, the integration looks up Lead records with a given email address and, if found, the integration adds a Task to the first matching Lead it finds.
* If a match is not found, the integration will create a Lead and a Task for that newly created Lead.
What is one way in which the integration can stay near real-time, but not exceed the number of allowed API calls in a 24-hour period?

  • A. Create an Inbound Message that, using Flow, can do all of the logic the integration code was doing.
  • B. Write a custom Apex web service that, given an email address, does all of the logic the integration code was doing.
  • C. Create several Apex InboundEmailHandlers to accept calls from the third-party system, thus bypassing the APT limits.
  • D. Use the REST API as well as the SOAP API to effectively double the API calls allowed in a 24-hour period.

正解:C


質問 # 25
A developer wrote an Apex method that makes an HTTP callout to an external system to get specialized data when a button is clicked from a custom Lightning web component on the Account record page.
Recently, users have complained that it takes longer than desired for the data to appear on the page after clicking the button.
What should the developer use to troubleshoot this issue?

  • A. Developer Console
  • B. Event Logs
  • C. Lightning Inspector
  • D. Salesforce CU

正解:A


質問 # 26
A developer created a Lightning web component for the Account record page that displays the five most recently contacted Contacts for an Account. The Apex method, getRecentContacts, returns a list of Contacts and will be wired to a property in the component.

Which two lines must change in the above ode to make the Apex method able to be wired?
Choose 2 answers

  • A. Add @AuraEnabled (cacheabletrue) to line 03.
  • B. Add public to line 04.
  • C. Remove private from line 09.
  • D. Add AuraEnanled(cacheabletrue) to the line 08

正解:A、B


質問 # 27
Universal Containers implements a private sharing model for the Convention_Attendence_c custom object. As part of a new quality assurance effort, the company created an Event___Reviewer__c user lookup field on the object. Management wants the event reviewer to automatically gain Read/write access to every record they are assigned to.
What is the best approach to ensure the assigned reviewer obtains Read/Write access to the record?

  • A. Create a Before Insert trigger on the Convention Attendee custom object, and use Apex Sharing Reasons and Apex Managed Sharing.
  • B. Create a criteria-based sharing rule on the Convention Attendee custom object to share the records the a group of Event Reviewers.
  • C. Create an After Insert trigger on the Convention Attendee custom object, and use Apex Sharing Reasons and Apex Managed Sharing.
  • D. Create criteria-based sharing rules on the Convention Attendee custom object to share the records with the Event Reviewers.

正解:A


質問 # 28
A developer is trying to decide between creating a Visualforce component or a Lightning component for a custom screen. Which functionality consideration impacts the final decision?

  • A. Will the screen make use of a JavaScript framework?
  • B. Does the screen need to be accessible from the Lightning Experience UI?
  • C. Will the screen be accessed via a mobile app?
  • D. Does the screen need to be rendered as a PDF?

正解:A


質問 # 29
......


Salesforce PDII試験は、Salesforceプラットフォーム上でカスタムアプリケーションを開発する開発者の知識とスキルを試す、挑戦的な試験です。この試験は60の多肢選択問題から構成され、120分間続きます。試験の合格点は63%であり、問題はSalesforceプラットフォームを使用して複雑なビジネス問題を解決する開発者の能力をテストするように設計されています。


PDII試験は60問の多肢選択問題から構成され、120分間行われます。試験に合格するためには、候補者は63%以上のスコアを達成する必要があります。試験はオンラインまたはテストセンターで受験することができます。試験の準備には、公式Salesforce PDII試験ガイドの学習、開発者トレーニングコースの参加、Salesforceプラットフォームでの実践経験などが含まれます。PDII認定を取得することは、開発者のスキルを確認するだけでなく、新しいキャリアの機会を開拓し、Salesforceエコシステムでの専門的な成長に取り組む姿勢を示すことにも役立ちます。


Salesforce PDII(Salesforce Certified Platform Developer II)は、スキルと知識を次のレベルに引き上げたい経験豊富なSalesforce開発者向けに設計された高度なレベルの認定プログラムです。 PDII認定は、Salesforce認定プラットフォーム開発者シリーズの第2レベルの認定であり、Salesforce開発の卓越性のベンチマークとしてグローバルに認識されています。認定試験は、Salesforceプラットフォームで高度なビジネスロジックと複雑なプログラミングソリューションを設計、開発、および実装する候補者の能力を評価します。

 

問題集全額返金保証付き!PDII問題公式問題集:https://www.passtest.jp/Salesforce/PDII-shiken.html

厳密検証されたPDII試験問題集PDF[2026年最新] 時間限定無料アクセスPassTest:https://drive.google.com/open?id=1k_k6df1Lo_BbF9RL5SfYnhKAn662VsNM