Salesforce Certified Platform Developer II Practice Test - Questions Answers, Page 17
List of questions
Question 161
![Export Export](https://examgecko.com/assets/images/icon-download-24.png)
The "Webservice" keyword___________.
Question 162
![Export Export](https://examgecko.com/assets/images/icon-download-24.png)
REST uses___________.
Question 163
![Export Export](https://examgecko.com/assets/images/icon-download-24.png)
The SOAP API_________.
Question 164
![Export Export](https://examgecko.com/assets/images/icon-download-24.png)
The REST API___________.
Question 165
![Export Export](https://examgecko.com/assets/images/icon-download-24.png)
The Bulk API__________.
Question 166
![Export Export](https://examgecko.com/assets/images/icon-download-24.png)
The Metadata API___________.
Question 167
![Export Export](https://examgecko.com/assets/images/icon-download-24.png)
Code must have X% overall code coverage.
Question 168
![Export Export](https://examgecko.com/assets/images/icon-download-24.png)
How would you test a web service?
Question 169
![Export Export](https://examgecko.com/assets/images/icon-download-24.png)
Which of the following about Dynamic Apex is incorrect?
Explanation:
While you can use simple bind variables in dynamic SOQL, you cann|ot use bind variable fields (e.g. :myVariable.field1_c) Use escapeSingleQuotes to prevent SOQL injection
Question 170
![Export Export](https://examgecko.com/assets/images/icon-download-24.png)
Which of the following exceptions cannot be caught and will force an error? (Choose three.)
Explanation:
SObjectException occurs when accessing a field not queried, or you try to change a field during the wrong dml statement (i.e. an edit-only field being set on insert) Custom exceptions must extend the "Exception" class
Question