Question: 1
The sales team at Universal Containers would like to see a visual indicator appear on both Account and Opportunity page layouts to alert salespeople when an Account is late making payments or has entered the collections process. What can a developer implement to achieve this requirement without having to write custom code?
Question: 2
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?
Question: 3
A company wants to create an employee rating program that allows employees to rate each other. An employees average rating must be displayed on the employee record. Employees must be able to create rating records, but are not allowed to create employee records. Which two actions should a developer take to accomplish this task?
Question: 4
A developer needs to find information about @future methods that were invoked. From which system monitoring feature can the developer see this information?
Question: 5
Managed Packages can be created in which type of org?