Java Multiplication Operator
Which of the following is an example of using the multiplication operator with primitive types in Java?
// Using multiplication operator to calculate a product
int product = 4 * 5;
A
int product = 4 + 5;
B
int product = 4 / 5;
C
int product = 4 - 5;
D
int product = 4 * 5;
Question Leaderboard
Not enough data yet to show leaderboard.
APFIVE