Not sure a study set is what you need? Download the free PDII-JPN demo from Getcertkey and review a sample of the Salesforce practice questions before you spend anything — the 2026 edition is ready to try today.
Salesforce PDII-JPN Exam Overview:
| Certification Vendor: | Salesforce |
|---|---|
| Exam Name: | Salesforce Certified Platform Developer II (Japanese Version) |
| Exam Number: | PDII-JPN |
| Real Exam Qty: | 60-65 |
| Certificate Validity Period: | 2 years |
| Exam Price: | USD 200 / JPY 30,000 |
| Exam Format: | Multiple-choice, Multiple-select |
| Exam Duration: | 120 minutes |
| Passing Score: | 70% |
| Available Languages: | English, Japanese |
| Related Certifications: | Salesforce Certified Platform Developer I |
| Recommended Training: | Trailhead Platform Developer II Certification Preparation |
| Exam Registration: | Salesforce Certification Registration |
| Sample Questions: | ![]() |
| Exam Way: | Online proctored or onsite at authorized test centers |
| Pre Condition: | Must hold active Salesforce Certified Platform Developer I certification |
| Official Syllabus URL: | https://trailhead.salesforce.com/credentials/platformdevii |
Salesforce PDII-JPN Exam Syllabus Topics:
| Section | Weight | Objectives |
|---|---|---|
| Advanced User Interfaces | 25% | - Aura Components - Custom metadata and settings - Visualforce advanced techniques - Lightning Web Components |
| Integration and Data Processing | 20% | - Event-driven architecture - API integration (REST, SOAP, Bulk, Streaming) - Data migration and transformation - External objects and connectors |
| Advanced Apex Programming | 32% | - Asynchronous Apex - Error handling and debugging - Apex design patterns and best practices - Apex testing and deployment |
| Salesforce Fundamentals | 8% | - Security and access considerations - Data modeling and management - Performance and scalability |
| Testing, Deployment and Governance | 15% | - Deployment tools and processes - Advanced testing strategies - Governance and maintenance |
Salesforce Exam FAQ: What Candidates Ask Most
What is the Salesforce PDII-JPN exam?
The PDII-JPN exam is the official Salesforce exam behind the Salesforce Certified Platform Developer II certification, validating the skills measured by the Salesforce credential. It sits at the Professional level of the Salesforce certification program. It also connects to Salesforce Certified Platform Developer I, so the knowledge you build here carries over to those tracks as well.
How many questions are on the PDII-JPN exam, and how much time do I get?
The PDII-JPN exam contains 60-65 questions to be completed within 120 minutes. Before exam day, divide the available time by the question count to work out a comfortable per-question pace, and mark any item that eats into it so you can return later instead of getting stuck. Timed sessions in the Getcertkey test engines make that pacing automatic — run at least two full-length mock exams under the clock so time pressure never becomes the reason you drop points.
What score do I need to pass the PDII-JPN exam, and what does it cost?
The passing score for the PDII-JPN exam is 70%, and the official registration fee is USD 200 / JPY 30,000. Retakes are not discounted — every new attempt means paying the full fee again — so it pays to measure yourself before you book. Work through the 163 practice questions on Getcertkey, sit a timed practice test, and schedule your exam only when your scores are consistently comfortable. That simple habit is the cheapest exam strategy there is.
Are there any prerequisites for the PDII-JPN exam?
Must hold active Salesforce Certified Platform Developer I certification Requirements can change when Salesforce revises its certification program, so confirm the current eligibility rules on the official exam page before you register.
How do I register for the PDII-JPN exam?
You can book the Salesforce exam through the official registration channels below:
As for delivery, the exam is offered in the following format: Online proctored or onsite at authorized test centers. Choose the option that suits you best when you book your seat.
What official training is recommended for the PDII-JPN exam?
Salesforce recommends the following training resources for the Salesforce exam:
Official courses build the foundation; the 163 practice questions from Getcertkey then show you how that knowledge is examined, so the two work best together.
Can I try the PDII-JPN practice questions before I buy?
Yes. Getcertkey provides a free PDII-JPN PDF demo so you can review the question style and answer quality before purchasing. Every purchase also includes 365 days of free updates — if Salesforce revises the exam during that period, the updated material reaches you at no cost. Once the free-update year ends, you can extend your update service at a 50% discount.
What if I fail the PDII-JPN exam, and how is my order delivered?
Every Salesforce purchase on Getcertkey is covered by a 100% money-back guarantee with clear conditions: if you take the corresponding exam within 60 days of your purchase and do not pass, you can claim a full refund by submitting a scanned copy of your exam enrollment slip and your official score report as a PDF within two days of the exam date; claims are processed within seven days of submission. The guarantee does not apply to exams taken within three days of purchase, to material that was downloaded but never used in an exam attempt, or to free products and expired orders, and the candidate name must match the payer name. If you would rather not take a refund, you can instead exchange your purchase for two free exam preparation products of equal value and keep the update service on your original product.
Delivery is instant: your download is sent to your email within one minute of payment, with no limit on how many computers you may install the material on. If nothing arrives within two hours, check your spam folder and contact customer service for help.
What topics are covered in the PDII-JPN exam?
The Salesforce exam blueprint is organized into 5 domains. The first three are:
- Advanced User Interfaces — 25% of the exam
- Integration and Data Processing — 20% of the exam
- Testing, Deployment and Governance — 15% of the exam
For the complete domain-by-domain breakdown, scroll up to the full exam topics outline above and use it to plan how you distribute your study time.
Salesforce Sample Questions:
Question 1
開発者がVisualforceコンポーネントとLightningコンポーネントのどちらを作成するか検討しています。Visualforceの使用が必要なシナリオはどれですか?
A. サードパーティのアプリケーションを使用せずに画面を PDF としてレンダリングする必要がありますか?
B. (コンテキストでオプションが提供されていません)
C. 画面では JavaScript フレームワークが使用されますか?
D. (質問ロジックのコンテキストでオプションAに一致)
Question 2
以下のコンポーネント コードと要件を参照してください。
HTML
<lightning:layout multipleRows="true">
<lightning:layoutItem size="12">{!v.account.Name}</lightning:layoutItem>
<lightning:layoutItem size="12">{!v.account.AccountNumber}</lightning:layoutItem>
<lightning:layoutItem size="12">{!v.account.Industry}</lightning:layoutItem>
</lightning:layout>
要件:
* モバイル デバイスの場合、情報は 3 行に表示されます。
* デスクトップとタブレットの場合、情報は 1 行に表示されます。
要件2が期待どおりに表示されません。デスクトップとタブレットの要件を満たす正しいコンポーネントコードを持つオプションはどれですか?
A. 1415
HTML
<lightning:layout multipleRows="true">
<lightning:layoutItem size="12" largeDeviceSize="4">{!v.account.Name}</lightning:layoutItem>
<lightning:layoutItem size="12" largeDeviceSize="4">{!v.account.AccountNumber}</lightning:
layoutItem>
<lightning:layoutItem size="12" largeDeviceSize="4">{!v.account.Industry}</lightning:layoutItem>
</lightning:layout>
B. HTML
<lightning:layout multipleRows="true">
<lightning:layoutItem size="12" mediumDeviceSize="6">{!v.account.Name}</lightning:layoutItem>
<lightning:layoutItem size="12" mediumDeviceSize="6">{!v.account.AccountNumber}</lightning:
layoutItem>
<lightning:layoutItem size="12" mediumDeviceSize="6">{!v.account.Industry}</lightning:layoutItem>
</lightning:layout>
C. <lightning:layout multipleRows="true"></lightning:layout>1213
D. HTML
<lightning:layout multipleRows="true">
<lightning:layoutItem size="12" mediumDeviceSize="4" largeDeviceSize="4"> {!v.account.Name} <
/lightning:layoutItem>
<lightning:layoutItem size="12" mediumDeviceSize="4" largeDeviceSize="4"> {!v.account.
AccountNumber} </lightning:layoutItem>
<lightning:layoutItem size="12" mediumDeviceSize="4" largeDeviceSize="4"> {!v.account.Industry}
</lightning:layoutItem>
</lightning:layout>
Question 3
開発者が外部Webサービスへの呼び出しを必要とするコードを記述しています。非同期メソッドで呼び出しを行う必要があるシナリオはどれですか?
A. コールアウトが完了するまでに 60 秒以上かかる可能性があります。
B. コールアウトは REST API を使用して行われます。
C. コールアウトは Apex トリガーで実行されます。
D. 1 回のトランザクションで 10 回を超えるコールアウトが行われます。
Question 4
次のコード スニペットを検討してください。
ジャワ
HttpRequest req = 新しい HttpRequest();
エンドポイントを 'https://TestEndpoint.example.com/some_path' に設定します。
req.setMethod('GET');
Blob headerValue = Blob.valueOf('myUserName' + ':' + 'strongPassword'); String authorizationHeader = 'BASIC ' + EncodingUtil.base64Encode(headerValue); req.setHeader('Authorization', authorizationHeader); Http http = new Http(); HTTPResponse res = http.send(req); コードを変更せずにエンドポイントと資格情報を変更するための柔軟性を追加するには、開発者が実行する必要がある 2 つの手順はどれですか?1
A. req.setEndpoint(Label.endPointURL); を使用します。
B. コールアウトリクエスト内で req.setEndpoint('callout:endPoint_NC'); を使用します。2
C. エンドポイントと資格情報を格納するための名前付き資格情報 endPoint_NC を作成します。5
D. エンドポイントの URL を endPointURL.4 というカスタムラベルに保存します。
Question 5
テストクラスで Visualforce ページを初期化するためのベストプラクティスは何ですか?
A. controller.currentPage.setPage(MyTestPage); を使用します。
B. Test.setCurrentPage.MyTestPage を使用します。
C. Test.setCurrentPage(Page.MyTestPage); を使用します。
D. Test.currentPage.getParameters.put (MyTestPage); を使用します。
Solutions:
| Question 1 Answer: A | Question 2 Answer: D | Question 3 Answer: C | Question 4 Answer: B,C | Question 5 Answer: C |


PDF Version Demo
721 Customer Reviews




Quality and ValueGetCertKey Practice Exams are written to the highest standards of technical accuracy, using only certified subject matter experts and published authors for development - no all study materials.
Tested and ApprovedWe are committed to the process of vendor and third party approvals. We believe professionals and executives alike deserve the confidence of quality coverage these authorizations provide.
Easy to PassIf you prepare for the exams using our GetCertKey testing engine, It is easy to succeed for all certifications in the first attempt. You don't have to deal with all dumps or any free torrent / rapidshare all stuff.
Try Before BuyGetCertKey offers free demo of each product. You can check out the interface, question quality and usability of our practice exams before you decide to buy.