Question Which condition checks an odd number? A. n % 2 == 0 B. n / 2 == 1 always C. n % 2 != 0 D. n == 2 Show Answer More MCQs Correct Answer: C n % 2 != 0 The correct answer is n % 2 != 0. The correct answer is n % 2 != 0.
Leave a Reply