CRT-450 Exam Question 161
Which tool can deploy destructive changes to Apex classes in production?
CRT-450 Exam Question 162
What is the order of operations when a record is saved in Salesforce?
CRT-450 Exam Question 163
A developer wants to store a description of a product that can be entered on separate lines by a user during product setup and later displayed on a Visualforce page for shoppers. Which field type should the developer choose to ensure that the description will be searchable in the custom Apex SOQL queries that are written?
CRT-450 Exam Question 164
How would a developer determine if a CustomObject__c record has been manually shared with the current user in Apex?
CRT-450 Exam Question 165
Which action can a developer take to reduce the execution time of the following code? List<account> allaccounts = [select id from account]; list<account> allcontacts = [select id, accountid from contact]; for (account a :allaccounts){ for (contact c:allcontacts){ if(c.accountid = a.id){ //do work }
} }
} }
