Coding Quiz
Level 1, 2026-04-01
All code is in Python. Operations with strings and numbers are not allowed. Ordering of string characters: !,A,1,a (meaning 'A' < 'a').
Special Symbols: Blank: Space: Error: E
|
Q=2 X=2 VAR=Q + X Print(VAR)
| [1]
|
|
Y=1 if Y > 7: Print("Yes") else: Print("No")
| [1]
|
|
def DoSum(F,Y) X=F * Y Print(X)
DoSum(3,9)
| [1]
|
|
|
Y=8 VAR=7 E=Y + VAR Print(E)
| [1]
|
|
|
|
|
|
|
|
VAR=8 X=2 E=VAR + X Print(E)
| [1]
|
|
|
A=2 if A <= 6: Print("Yes") else: Print("No")
| [1]
|
|
|
|
B=9 if B >= 4: Print("Yes") else: Print("No")
| [1]
|
|
E=1 VAR=8 F=E + VAR Print(F)
| [1]
|
|
|
|