KnowledgeBoat Logo

Computer Applications

Write a Java constant declaration that gives the name TAX_RATE to the value 15%.

Values & Data Types Java

ICSE

11 Likes

Answer

final int TAX_RATE = 15;

Answered By

4 Likes


Related Questions