Correct Answer: int a = 1, b , dummy; a > 10 ? b = 20 : dummy =1; Note that the following would not have worked: a > 10 ? b = 20 : ;;