Multiple choice Is there a difference between i ++ and ++I ? No difference Sometimes there is a difference, sometimes not ++i is illegal I++ is illegal Reveal answer Fill a bubble to check yourself B Correct answer Explanation The postfix operator i++ returns the current value before incrementing, while the prefix operator ++i increments the value before returning it. Therefore, they behave differently in expressions.