CRT-450 Salesforce Certified Platform Developer I (SU18)

Loading demo links...

Showing 7–9 of 15 questions

Question 7

What are three ways for 2 developer to execute tests in an org? Choose 3 answers

Select all that apply, then click Submit answer.

  • Metadata APT

  • Bulk API

  • Setup Menu

  • SalesforceDX

  • Tooling API

Question 8

Which statement results in an Apex compiler error?

Select an option, then click Submit answer.

  • Map lmap = new Map([Select ID from Lead Limit 8]);

  • Date d1 = Date.Today(), d2 = Date.ValueOf(‘2018-01-01’);

  • Integer a=5, b=6, c, d = 7;

  • List s = List{‘a’,‘b’,‘c’);

Question 9

In the following example, which sharing context myMethod execute when it is invoked?

public Class myClass {

public void myMethod() { /* implementation */ } }

Select an option, then click Submit answer.

  • Sharing rules will not be enforced for the running user.

  • Sharing rules will be inherited from the calling context.

  • Sharing rules will be enforced for the running user.

  • Sharing rules will be enforced by the instantiating class.