Find the output

Report a typo

What is the result of this code?

val x = 11

if (x * 2 + 1 < 23 && x % 2 == 1) {
    print("1")
    print(if (x == 11) "2" else "3")
} else if (x != 0) {
    print("4")
}
print("5")
Select one option from the list
___

Create a free account to access the full topic