PDII Exam Questions - Online Test


PDII Premium VCE File

Learn More 100% Pass Guarantee - Dumps Verified - Instant Download
150 Lectures, 20 Hours

certleader.com

Cause all that matters here is passing the Salesforce PDII exam. Cause all that you need is a high score of PDII Salesforce Certified Platform Developer II (PDII) exam. The only one thing you need to do is downloading Ucertify PDII exam study guides now. We will not let you down with our money-back guarantee.

Online Salesforce PDII free dumps demo Below:

NEW QUESTION 1
JavaScript remote actions need be either a _____ or ______ class and must be _______ .

  • A. Public or global and must be static.
  • B. Private or global and must be static.
  • C. Public or TestVisible and must be static.

Answer: A

NEW QUESTION 2
Which tool in the Developer Console can a developer use to monitor the cardinality and the cost of a SOQL query?

  • A. View State tab
  • B. Query Plan Tool
  • C. Audit Log
  • D. Query Activity Tool

Answer: B

NEW QUESTION 3
What is the transaction limit for the number of SOSL queries?

  • A. 20
  • B. 2,000
  • C. 100 (synchronous), 200 (async)
  • D. 200 (synchronous), 100 (async)
  • E. There is no limit

Answer: A

NEW QUESTION 4
What is the transaction limit for the number of DML statements allowed?

  • A. 20
  • B. 2,000
  • C. 100 (synchronous), 200 (async)
  • D. 200 (synchronous), 100 (async)
  • E. 150

Answer: E

NEW QUESTION 5
What is the top-level namespace that provides the ability to use Chatter in Apex?

  • A. RestApi
  • B. ChatterApi
  • C. FeedApi
  • D. ConnectApi

Answer: D

NEW QUESTION 6
A developer created a custom component to display an HTML table. The developer wants to be able to use the component on different Visualforce Pages and specify different header text for the table. Which tag should the developer use inside the component?

  • A. < apex:variable>
  • B. < apex:define>
  • C. < apex:param>< meta charset="utf-8" />< apex:param>
  • D. < apex:attribute>

Answer: D

NEW QUESTION 7
The SOAP API...

  • A. Is based on REST principles and is optimized for loading or deleting large sets of dat
  • B. You can use it to query, queryAll, insert, update, upsert, or delete many records asynchronously by submitting batches
  • C. Provides a powerful, convenient, and simple REST-based web services interface for interacting with Salesforc
  • D. Its advantages include ease of integration and development, and it's an excellent choice of technology for use with mobile applications and web projects
  • E. Is used to to create, retrieve, update or delete records, such as accounts, leads, and custom objects, and allows you to allows you to maintain passwords, perform searches, and much more
  • F. Is used to to retrieve, deploy, create, update, or delete customizations for your or
  • G. The most common use is to migrate changes from a sandbox or testing org to your production environment

Answer: C

NEW QUESTION 8
A developer needs to create a service that will process an email sent to it and create an account and contact using the contents of the email as data for the records. How might a developer accomplish this requirement?

  • A. Use the Apex Inbound Email Handler.
  • B. Use the Fuel API with Email Data Extensions.
  • C. Use Heroku Data Clips to Process Email.
  • D. Use Auto-launched Flow and Process Builder.

Answer: A

NEW QUESTION 9
A developer is building a Visualforce page that interacts with external services. Which interface should the developer implement to test this functionality? Choose 2 answers

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

Answer: AD

NEW QUESTION 10
Which API can be used to execute unit tests? Choose 3 answers

  • A. Streaming API
  • B. Test API
  • C. Tooling API
  • D. SOAP API
  • E. Metadata API

Answer: CDE

NEW QUESTION 11
A developer has created a Visualforce page that uses a third-party JavaScript framework. The developer has decided to supply data to the JavaScript functions using JavaScript Remoting for Apex Controllers. What is the correct syntax to declare a remote method in Apex? Choose 2 answers

  • A. @RemoteAction global static String getTable()
  • B. @RemoteAction global String getTable()
  • C. @RemoteAction public static String getTable()
  • D. @Remoteobject global static String gettable AC

Answer: AC

NEW QUESTION 12
A developer has built a multi-page wizard using a single Custom Controller to query and update data. Users are complaining that the pages are loading slowly. What will improve performance? Choose 3 answers

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

Answer: ADE

NEW QUESTION 13
What level can a hierarchy custom setting be defined for? Choose 3 answers

  • A. Users
  • B. Groups
  • C. Profiles
  • D. Roles
  • E. Organization

Answer: ACE

NEW QUESTION 14
A developer is writing a Visualforce page to display a list of all of the checkbox fields found on a custom object. What is the recommended mechanism the developer should use to accomplish this?

  • A. Schema class
  • B. Apex API
  • C. Schema Builder
  • D. Metadata API

Answer: A

NEW QUESTION 15
A developer has created a solution using the SOAP API for authenticating Communities users. What is needed when issuing the login()Call? Choose 2 answers

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

Answer: CD

NEW QUESTION 16
Employee-c is a Child object of Company-c. The Company-c object has an external Id field Company_Id_c. How can a developer insert an Employee-c record linked to Company-c with a Company_Id_c of '999'?

  • A. Employee-c emp = new Employee-C(Name='Developer‘); emp.Company_r = ' 999' insert emp;
  • B. Employee-c emp = new Employee-C(Name='Developer‘); emp.Company_c = ' 999' insert emp;
  • C. Employee-c emp = new Employee-C(Name='Developer'); em
  • D. Company-c = new Company-c(Company_Id_c=' 999 insert emp;
  • E. Employee-c emp = new Employee-C(Name='Developer'); emp.Company_r = new Company-r(Company_Id_c=' 999'); insert emp;

Answer: D

NEW QUESTION 17
What is a valid request for the following REST method: @HttpPost global static void myPostMethod(String sl,Integer il, Boolean bl, String b2) Choose 2 answers

  • A. < request> < sl>my first string < 11>123 < 32>my second string < b1>false < /request>
  • B. < request> < sl>"my first string" < il>123 < sZ>"my second string" < bl>false < /request>
  • C. Sl" : "my first string", 11" : "123", "b1" : "false", “S2" : "my second string"
  • D. "il" : 123, “S1" : "my first string", "S2" : "my second string", “bl" : false

Answer: BD

NEW QUESTION 18
Choose the correct definition for <apex:message>

  • A. Standard Salesforce formatting, throws a specific message on a page
  • B. Standard Salesforce formatting, shows all errors that occur on pag
  • C. Can add more messages through the "ApexPages.addMessage" function
  • D. A single message, without formatting, that can be associated with a specific component on the page
  • E. No formatting; displays all errors on a page

Answer: D

NEW QUESTION 19
What is the transaction limit on the number of "sendEmail" method calls?

  • A. 20
  • B. 10
  • C. 50
  • D. 100
  • E. There is no limit

Answer: B

NEW QUESTION 20
What is the transaction limit on the recursive trigger depth?

  • A. 10
  • B. 17
  • C. 16
  • D. 3
  • E. There is no limit

Answer: C

NEW QUESTION 21
......

Thanks for reading the newest PDII exam dumps! We recommend you to try the PREMIUM Dumps-hub.com PDII dumps in VCE and PDF here: https://www.dumps-hub.com/PDII-dumps.html (317 Q&As Dumps)