Computer Applications
Write a Java constant declaration that gives the name TAX_RATE to the value 15%.
Values & Data Types Java
11 Likes
Answer
final int TAX_RATE = 15;
Answered By
4 Likes
Related Questions
If you want to change the precedence of operations in an expression, which symbols do you use?
How can you write single line comments in Java?
What are symbolic constants? How are they useful in writing programs?
Explain the statement, "a well-documented code is as important as the correctly working code".