Multiple choice Find the odd one out of the following. int i = 0; while(i < 5){ i++;} int i = 1; while(i < = 5){ i++;} int i = 5; while(i--); int i = 5; while(--i); Reveal answer Fill a bubble to check yourself D Correct answer Explanation (This is the only one which runs for four times).