Question: Fill in the blank to create a piece of code that will tell whether `int0` is divisible by `5`:
- `int0 / 5 ? true: false`
- `int0 % 5 == 0`
- `int0 % 5 != 5`
- `Math.isDivisible(int0, 5)`
Answer: The correct answer of the above question is Option B:`int0 % 5 == 0`