Solved

Which of the Following Statements Correctly Defines a Named Constant

Question 50

Multiple Choice

Which of the following statements correctly defines a named constant named TAX_RATE that holds the value 0.075?


A) double TAX_RATE = 0.075;
B) const TAX_RATE;
Double TAX_RATE = 0.075;
C) const double TAX_RATE = 0.075;
D) double TAX_RATE;
Const TAX_RATE = 0.075;
E) const TAX_RATE = 0.075;

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions