234k views
1 vote
Output range with increment of 5 Java.

A) 5, 10, 15, ...
B) 1, 6, 11, ...
C) 0, 5, 10, ...
D) 2, 7, 12, ...

1 Answer

2 votes

Final answer:

The output range with an increment of 5 in Java is 5, 10, 15, ...

Step-by-step explanation:

The output range with an increment of 5 in Java is option A) 5, 10, 15, ...

This means that starting from 5, each subsequent value will increase by 5. For example, 5 + 5 = 10, 10 + 5 = 15, and so on.

User Arpanoid
by
8.1k points