CRT-450 Dumps

CRT-450 Free Practice Test

Salesforce CRT-450: Salesforce Certified Platform Developer I (SU18)

QUESTION 21

When is an Apex Trigger required instead of a Process Builder Process?

Correct Answer: D

QUESTION 22

What would a developer do to update a picklist field on related Opportunity records when a modification to the associated Account record is detected?

Correct Answer: A

QUESTION 23

How can a developer set up a debug log on a specific user?

Correct Answer: D

QUESTION 24

How can a developer refer to, or instantiate a PageReference in Apex? Choose 2 answers

Correct Answer: AB

QUESTION 25

A developer in a Salesforce org with 100 Accounts executes the following code using the Developer console:Account myAccount = new Account(Name = 'MyAccount');Insert myAccount;For (Integer x = 0; x < 150; x++)
{Account newAccount = new Account (Name='MyAccount' + x);try {Insert newAccount;} catch (Exception ex)
{System.debug (ex) ;}}insert new Account (Name='myAccount');How many accounts are in the org after
this code is run?

Correct Answer: B