You execute the following code.
How many times will the word Hello be printed?
A.
49
B.
50
C.
51
D.
100
Explanation:
The mod operator computes the remainder after dividing its first operand by its second. All
numeric types have predefined remainder operators.
In this case the reminder will be nonzero 50 times (for i with values 1, 3, 5,..,99).
B: 50 (tested)
First iteration (0) does not get printed, and subsequently only odd numbers between 1 – 100