CRT-450 Salesforce Certified Platform Developer I (SU18)

Loading demo links...

Showing 1–3 of 15 questions

Question 1

What are two ways a developer can get the status of an enquered job for a class that queueable interface? Choose 2 answers

Select all that apply, then click Submit answer.

  • View the apex status Page

  • View the apex flex Queue

  • View the apex Jobs page

  • Query the AsyncApexJobe object

Question 2

Which two sfdx commands can be used to add testing data to a Developer sandbox?

Select all that apply, then click Submit answer.

  • Forced: data:bulk:upsert

  • Forced: data: object :upsert

  • Forced: data: tree: upsert

  • Forced: data:async:upsert

Question 3

Management asked for opportunities to be automatically created for accounts with annual revenue greater than $1,000,000. A developer created the following trigger on the Account object to satisfy this requirement.

C:\Users\wk\Desktop\mudassar\Untitled.png

Users are able to update the account records via the UI and can see an opportunity created for high annual revenue accounts. However, when the administrator tries to upload a list of 179 accounts using Data Loader, It fails with system. Exception errors.

Which two actions should the developer take to fix the code segment shown above?

Choose 2 answers

Select all that apply, then click Submit answer.

  • Check if all the required fields for Opportunity are being added on creation.

  • Use Database.query to query the opportunities.

  • Move the DML that saves opportunities outside the for loop.

  • Query for existing opportunities outside the for loop.