CRT-450 Dumps

CRT-450 Free Practice Test

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

QUESTION 46

In an organization that has enabled multiple currencies, a developer needs to aggregate the sum of the Estimated_value c currency field from the CampaignMember object using a roll-up summary field called Total_estimated_value c on Campaign.

Correct Answer: A

QUESTION 47

Which two queries can a developer use in a visualforce controller to protect against SOQL injection Vulnerabilities? Choose 2 answers

Correct Answer: AD

QUESTION 48

When an Account’s custom picklist field called Customer Sentiment is changed to a value of “Confused”, a new related Case should automatically be created.
Which two methods should a developer use to create this case? (Choose two.)

Correct Answer: AB

QUESTION 49

Which user can edit a record after it has been locked for approval? (Choose 2)

Correct Answer: BD

QUESTION 50

A developer creates an Apex Trigger with the following code block:List customers = new List();For (Order c o: trigger.new){Account a = [SELECT Id, Is_Customer c FROM Account WHERE Id = :o.Customer c];a.Is_Customer c = true;customers.add(a);}Database.update(customers, false);The developer tests the code using Apex Data Loader and successfully loads 10 Orders. Then, the developer loads 150 Orders.How many Orders are successfully loaded when the developer attempts to load the 150 Orders?

Correct Answer: A