Q30
Single choice
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?