Salesforce Certified Platform Developer II Practice Test - Questions Answers, Page 17
List of questions
Related questions
The "Webservice" keyword___________.
A.
Method must be static, and class must be global
B.
Can be used on all classes
C.
Used for any member variables included
D.
All of the above
REST uses___________.
A.
The HTTP class
B.
The HTTPRequest class
C.
The HTTPResponse class
D.
All of the above
The SOAP API_________.
A.
Is based on REST principles and is optimized for loading or deleting large sets of data. You can use it to query, queryAII, insert, update, upsert, or delete many records asynchronously by submitting batches
B.
Provides a powerful, convenient, and simple REST-based web services interface for interacting with Salesforce. Its advantages include ease of integration and development, and it's an excellent choice of technology for use with mobile applications and web projects
C.
Is used 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
D.
Is used to retrieve, deploy, create, update, or delete customizations for your org. The most common use is to migrate changes from a sandbox or testing org to your production environment
The REST API___________.
A.
Is based on REST principles and is optimized for loading or deleting large sets of data. You can use it to query, queryAII, insert, update, upsert, or delete many records asynchronously by submitting batches
B.
Provides a powerful, convenient, and simple REST-based web services interface for interacting with Salesforce. Its advantages include ease of integration and development, and it's an excellent choice of technology for use with mobile applications and web projects
C.
Is used to create, retrieve, update or delete records, such as accounts, leads, and custom objects, and allows you to maintain passwords, perform searches, and much more
D.
Is used to retrieve, deploy, create, update, or delete customizations for your org. The most common use is to migrate changes from a sandbox or testing org to your production environment
The Bulk API__________.
A.
Is based on REST principles and is optimized for loading or deleting large sets of data. You can use it to query, queryAII, insert, update, upsert, or delete many records asynchronously by submitting batches
B.
Provides a powerful, convenient, and simple REST-based web services interface for interacting with Salesforce. Its advantages include ease of integration and development, and it's an excellent choice of technology for use with mobile applications and web projects
C.
Is used to create, retrieve, update or delete records, such as accounts, leads, and custom objects, and allows you to maintain passwords, perform searches, and much more
D.
Is used to retrieve, deploy, create, update, or delete customizations for your org. The most common use is to migrate changes from a sandbox or testing org to your production environment
The Metadata API___________.
A.
Is based on REST principles and is optimized for loading or deleting large sets of data. You can use it to query, queryAII, insert, update, upsert, or delete many records asynchronously by submitting batches
B.
Provides a powerful, convenient, and simple REST-based web services interface for interacting with Salesforce. Its advantages include ease of integration and development, and it's an excellent choice of technology for use with mobile applications and web projects
C.
Is used to create, retrieve, update or delete records, such as accounts, leads, and custom objects, and allows you to maintain passwords, perform searches, and much more
D.
Is used to retrieve, deploy, create, update, or delete customizations for your org. The most common use is to migrate changes from a sandbox or testing org to your production environment
Code must have X% overall code coverage.
A.
X= 100
B.
X = 75
C.
X = 65
D.
X = 50
How would you test a web service?
A.
Use the @future annotation on the method
B.
Call the WebService interface
C.
Web Services do not need to be tested
D.
Create a class that implements the WebServiceMock interface
Which of the following about Dynamic Apex is incorrect?
A.
You can retrieve the sObject type from an Id by calling .getSObjectTypeQ
B.
getDescribe() can get you a variety of info on a particular object/field
C.
Schema.getGlobalDescribeQ gives you a map of all sObject
D.
In dynamic SOQL, you can use bind variables and bind variable fields
Which of the following exceptions cannot be caught and will force an error? (Choose three.)
A.
LimitException
B.
AssertException
C.
SObjectExceptions
D.
DMLException
E.
License exceptions
F.
ListException
Question