C-17-Q098mediumsingle_mcq
The condition used inside the loop to detect odd numbers is:
The condition used inside the loop to detect odd numbers is:
- a
i % 2 == 0 - b
i % 2 != 0 - c
i // 2 == 0 - d
i % 3 == 0
The condition used inside the loop to detect odd numbers is:
i % 2 == 0i % 2 != 0i // 2 == 0i % 3 == 0