Which is the best to declare a named constant for a fixed interest rate?

a. final double interestRate = .05;
b. final double INTEREST_RATE = .05;
c. double interestRate = .05;
d. double INTEREST_RATE = .05;



Answer :

Other Questions