What is the output of the following code if number is 14, 15, and 30?
(a) if number % 2 == 0:print(number, "is even")if number % 5 == 0:print(number, "is multiple of 5")
(b) if number % 2 == 0:print(number, "is even")elif number % 5 == 0:print(number, "is multiple of 5")
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here