Coding Quiz
Level 3, 2026-02-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
|
|
F=0 while (F<2): F=F+1 Print("X")
| [1]
|
|
if True: Print(1) elif True: Print(2) else: Print(3)
| [1]
|
|
|
VAR=0 B=0 while (VAR<9): VAR=VAR+1 B=B+7 Print(VAR+","+B)
| [1]
|
|
Z="e" F="E" Print("Z"+F)
| [1]
|
|
Print("A") #Print("B") Print("C")
| [1]
|
|
def DoSum(F,A) E=F * A Print(E)
DoSum(4,8)
| [1]
|
|
|
VAR=3 X=2 Y=VAR * X Print(Y)
| [1]
|
|
F=0 B=0 while (F<5): F=F+1 B=B+2 Print(F+","+B)
| [1]
|
|
|
|
A=0 Y=1 while (A<7): A=A+1 Y=Y*A Print(Y)
| [1]
|
|
VAR=9 if VAR == 6: Print("Yes") else: Print("No")
| [1]
|
|
Q=0 while (Q<0): Q=Q+1 Print("X")
| [1]
|
|
|
VAR=6 if F <= 5: Print("Yes") else: Print("No")
| [1]
|
|
|
|