The syntax that declares a Java named constant named SALES_TAX is:

(a) double SALES_TAX = 7.50;
(b) public double SALES_TAX = 7.50;
(c) public static double SALES_TAX = 7.50;
(d) public static final double SALES_TAX = 7.50;

(d) public static final double SALES_TAX = 7.50;

Computer Science & Information Technology

You might also like to view...

Every object in Java knows its own class and can access this information through method .

a. getClass. b. getInformation. c. objectClass. d. objectInformation.

Computer Science & Information Technology

A(n) ____________________ allows you to view your data one record at a time, with the fields of each record arranged on your computer screen as they might be arranged on a printed form.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology