Answer:
InsuranceRates.smokerCharge
Explanation:
To set the baseCost variable to the value of the class variable smokerCharge, the developer needs to replace
Decimal baseCost = XXX;
with
Decimal baseCost = InsuranceRates.smokerCharge;
This is done using the class reference type.
The smokerCharge should be declared in the InsuranceRates class, at first.
For example Ball b;
And then, a new instance of the object from the class is created, using the new keyword along with the class name: b = new Ball();
In comparing to the example I gave in the previous paragraph, the object reference in the program is:
InsuranceRates rates = new InsuranceRates();
Because the smokerCharge is coming from a different class, it can only be assigned to the variable baseCost via the InsuranceRates class to give:
Decimal baseCost = InsuranceRates.smokerCharge;
Putting as much information as possible on a slide is wrong because sometimes, that will create a messy presentation. A messy presentation can become unreadable and if your information is unreadable, it is not effective. Similarly, you do not want to use a font color that blends in with the background. A yellow font on a yellow background could clash negatively or make your information seem to disappear into the background completely. Presenting this on a screen would make it almost impossible to see anything of what you wrote. This would be ineffective, as well. Using the largest font size possible is also not a very good idea because it's going to be too big. It will fill up the entire screen and make everything messy seeming, overwhelming to look at, or unreadable. Another ineffective decision.
Now, although using a maximum of two fonts on a slide is important, this does not specify the fonts which you should NOT use. There are many unreadable fonts that create a messy an ineffective presentation, and just getting to choose any two of them isn't very specific.
The correct answer would be to use a consistent color scheme. Sometimes the most effective presentations are simple, yet well put together.