時間限定無料ダウンロード 最新のPDII問題集で2023年最新のPDII試験問題 [Q68-Q83]

Share

時間限定無料ダウンロード 最新のPDII問題集で2023年最新のPDII試験問題

最新のSalesforce PDII認定の練習テスト問題


Salesforce PDII認定を獲得するには、候補者は60の複数選択の質問と5つのプログラミング割り当てで構成される厳格な試験に合格する必要があります。この試験では、Apexプログラミング言語、VisualForceフレームワーク、Lightningコンポーネントフレームワーク、データモデリング、統合、セキュリティ、パフォーマンスチューニングなど、幅広いトピックをカバーしています。プログラミングの割り当てでは、候補者がApex、Visualforce、またはLightningコンポーネントを使用してカスタムアプリケーションを構築し、Salesforceプラットフォームを使用して複雑なビジネス上の問題を解決する能力を実証する必要があります。 Salesforce PDII認定は、キャリアの機会を強化し、Salesforceプラットフォームにカスタムアプリケーションを構築する専門知識を実証したい開発者にとって貴重な資産です。

 

質問 # 68
A developer built a Component to be used at the front desk for quests to self-register upon arrival at a kiosk.
The developer is now asked to create a Component for the Utility Tray to alert Users whenever a guest has arrived at the front desk.
What should be used?

  • A. Application Event
  • B. Component Event
  • C. DML Operation
  • D. ChangeLog

正解:A


質問 # 69
A developer created a class that implement he Queueable interface, as follows:
As part of the deployment process, the developer is asked to create a corresponding test class.
Which two actions should the developer take to successfully execute the test class?
Choose 2 answers

  • A. Implement seeAllData-true to ensure the Queueable )ob is able to run in bulk mode.
  • B. Enclose System.enqueueJob (new orderQueueable Job ( }) within Test. starttest and Test, stoptest ()
  • C. Implement Test.isRunningtest ( ) to prevent chaining jobs during test execution.
  • D. Ensure the running user of the test class has, at least, the View All permission on the Order object

正解:B、D


質問 # 70
A developer created three Rollup Summary fields: Total_timesheets_c, Total_Approved_timesheet_c and Total_project_Timesheet_c in the custom object, project _c Now, the developer is tasked with created a new field to show the ratio between and approved

  • A. No test methods will be executed during deployment.
  • B. A formula field will calculate the value retroactively for existing records.
  • C. Using a formula field reduces maintenance overhead.
  • D. A test class that validates the formula field is needed for deployment.

正解:B、C


質問 # 71
A developer has built a multi-page wizard using a single Custom Controller to query and update dat
a. Users are complaining that the pages are loading slowly.
What will improve performance? (Choose three.)

  • A. Using actionRegion and rerender
  • B. Turning off the standard stylesheet
  • C. Using selective queries
  • D. Reducing the view state
  • E. Setting the Apex Page attribute cache=true

正解:C、D、E


質問 # 72
What is a potential design issue with the following code?

  • A. The code will result in a System.DmException:Entity_is_Deleted error
  • B. The code will result in a System.LimitException : Too many script statements error
  • C. The code will result in a System.LimitException: Apex CPU time limit exceeded error
  • D. SOQL could be avoided by creating a formula field for StageName in Account from the related Opportunity

正解:C


質問 # 73
A developer wrote an Apex method to update a list of Contacts and wants to make it available for use by Lightning web components.
Which annotation should the developer add to the Apex method to achieve this?

  • A. @RemoteAction
  • B. @AuraEnable
  • C. @RemoteAction(cacheable=true)
  • D. @AuraEnabled

正解:B


質問 # 74
A large company uses Salesforce across several departments. Each department has its own Salesforce Administrator. It was agreed that each Administrator would have their own sandbox in which to test changes. Recently, users notice that fields that were recently added for one department suddenly disappear without warning. Also, Workflows that once sent emails and created tasks no longer do so. Which two statements are true regarding these issues and resolution? Choose 2 answers

  • A. The administrators are deploying their own Change Sets over each other, thus replacing entire Page Layouts and Workflows in Production
  • B. The administrators are deploying their own Change Sets, thus deleting each other's fields from the objects in production.
  • C. A sandbox should be created to use as a unified testing environment instead of deploying Change Sets directly to production.
  • D. Page Layouts should never be deployed via Change Sets, as this causes Workflows and Field-level Security to be reset and fields to disappear.

正解:A、C


質問 # 75
The Salesforce admin at cloud kicks created a custom object called Region_ c to store all postal zip codes in the United States and the Cloud Kicks sales region the Zip code belong to.
Object Name:

Fields:

Cloud Kicks wants a trigger on the Lead to populate the Region based on the Lead's zip code. Which code segment is the most efficient way to fulfill this request?

  • A.
  • B.
  • C.

正解:C


質問 # 76
How should a developer reference a third-party JavaScript library from a Lightning component?

  • A. From a document
  • B. From a static resource
  • C. From a third-party URL
  • D. From an asset file

正解:B


質問 # 77
A company wants to implement a new call center process for handling customer service calls. It requires service reps to ask for the caller's account number before proceeding with the rest of their call script. Following best practices, what should a developer use to meet this requirement?

  • A. Process Builder
  • B. Flow Builder
  • C. Apex Trigger
  • D. Approvals

正解:A


質問 # 78
Which of the following variables are not transmitted in the view state? Choose two answers

  • A. Static
  • B. Public
  • C. Private
  • D. Transient

正解:A、D


質問 # 79
A developer has created a solution using the SOAP API for authenticating Communities users. What is needed when issuing the login() Call? (Choose two.)

  • A. Organization Id
  • B. Security Token
  • C. Username and Password
  • D. Session Id

正解:A、C


質問 # 80
A developer encounters an error that states that the Apex heap size is exceeded. Which technique may reduce heap size?

  • A. Add the transient keyword to the variable definition.
  • B. Use SOQL for loops instead of standard SOQL queries.
  • C. Move the variable definition inside the scope of the function.
  • D. Use static variables instead of instance variables.

正解:B


質問 # 81
A developer writes the following code:

While testing the code, the developer receives the following error message: System.CalloutException : You have uncommitted work pending What should the developer do? (Choose two.)

  • A. Move the web service callout into an Cfuture method
  • B. Use Database.insert (order, true) to immediately commit any database changes
  • C. Use the asyncSend() method of the HTTP class to send the request in async context
  • D. Ensure all callouts are completed prior to executing DML statements

正解:A、D


質問 # 82
Exhibit:

Consider the above trigger intended to assign the Account to the manager of the Account''s region. Which two changes should a developer make in this trigger to adhere to best practices? Choose 2 answers

  • A. Remove the last line updating accountList as it is not needed.
  • B. Move the Region__c query to outside the loop.
  • C. Use a Map accountMap instead of List accountList.
  • D. Use a Map to cache the results of the Region__c query by Id.

正解:A、B


質問 # 83
......


Salesforce PDII(Salesforce Certified Platform Developer II(PDII))試験は、Salesforceの経験豊富な開発者のスキルと知識をテストするために設計されています。この試験では、Salesforceプラットフォームに複雑なアプリケーションを構築するために必要な高度なプログラミングの概念と技術に焦点を当てています。この試験に合格すると、開発者がSalesforceを使用して組織のニーズを満たす複雑なソリューションを設計および実装する専門知識を持っていることが示されています。

 

検証済みのPDII問題集と解答で一年間無料最速更新:https://www.goshiken.com/Salesforce/PDII-mondaishu.html

今すぐ試そう2023年最新の無料更新されたSalesforce PDII試験問題と解答:https://drive.google.com/open?id=13_CnaUQ4Ukv87qUqAnJpEDs47zUQAEBH