CRT-450 Dumps

CRT-450 Free Practice Test

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

QUESTION 26

A developer is asked to set a picklist field to ‘Monitor’ on any new Leads owned by a subnet of Users. How should the developer implement this request?

Correct Answer: C

QUESTION 27

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 < 250; 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

QUESTION 28

Which two statements are true about using the @testSetup annotation in an Apex test class? (Choose two.)

Correct Answer: D

QUESTION 29

Which three declarative fields are correctly mapped to variable types in Apex? (Choose three.)

Correct Answer: ADE

QUESTION 30

A company would like to send an offer letter to a candidate, have the candidate sign it electronically, and then send the letter back.What can a developer do to accomplish this?

Correct Answer: C