Question 71
From which 2 locations can a developer determine the overall code coverage for a sandbox?
Question 72
What should a developer use to implement an automatic Approval Process submission for Cases?
Question 73
A developer has the following class and trigger code:
public class InsuranceRates { public static final Decimal smokerCharge = 0.01; } trigger ContactTrigger on Contact (before insert) { InsuranceRates rates = new InsuranceRates(); Decimal baseCost = XXX; } Which code segment should a developer insert at the XXX to set the baseCost variable to the value of the class variable smokerCharge?
public class InsuranceRates { public static final Decimal smokerCharge = 0.01; } trigger ContactTrigger on Contact (before insert) { InsuranceRates rates = new InsuranceRates(); Decimal baseCost = XXX; } Which code segment should a developer insert at the XXX to set the baseCost variable to the value of the class variable smokerCharge?
Question 74
Which two statements are accurate regarding Apex classes and interfaces?
Choose 2 answers
Choose 2 answers
Question 75
Which two Apex data types can be used to reference a Salesforce record ID dynamically? (Choose two.)
