Imagine we are having 10 numbers from 1 to 10. 1, 2, 3, 4, 5, 6, 7, ,8 ,9, 10.
For everyone of these numbers we run the following statement:
if (num % 2 !== 0 ) {
// Do something here
}
Under which numbers will this condition be executed?
Select one of the following: