Assume that both code segments initialize choice to the same integer value. Which of the following best describes the conditions on the initial value of the variable choice that will cause the two code segments to produce different output? choice < 5 choice >= 5 and choice <= 10 choice > 10 choice == 5 or choice == 10
There is no value for choice that will cause the two code segments to produce different output.