Question: Java Question Please highlight the 1 correct option from 4 given at bottom Fill in the blank to create a piece of code that will
Java Question
Please highlight the 1 correct option from 4 given at bottom
Fill in the blank to create a piece of code that will tell whether int0 is divisible by 5:
boolean isDivisibleBy5 = _____
-
int0 % 5 == 0
-
int0 / 5 ? true: false
-
int0 % 5 != 5
-
Math.isDivisble(int0, 5)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
