Coding Quiz
Level 2, 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
#Print("A") #Print("B") Print("C")
| [1]
|
|
X="B" VAR="d" Print("X"+VAR)
| [1]
|
|
|
def DoSum(VAR,A) F=VAR - A return F
DoSum(7,2) Print(F)
| [1]
|
|
F="f" B="b" Print("F"+B)
| [1]
|
|
def DoSum(VAR,Z) Y=VAR * Z return Y
DoSum(4,5) Print(Y)
| [1]
|
|
def DoSum(E,Q) A=E - Q return A
X=DoSum(4,3) Print(A)
| [1]
|
|
E="c" X="F" Print(E+"X")
| [1]
|
|
def DoSum(Q,Y) B=Q - Y Print(B)
DoSum(9,4)
| [1]
|
|
VAR="8" VAR="C" Print(VAR)
| [1]
|
|
def DoSum(F,E) A=F - E return A
DoSum(5,4) Print("A")
| [1]
|
|
def Hello(F) Y="Hi " + F Print(Y)
Hello("Max")
| [1]
|
|
|
def Hello(Q) B="Hi " + Q Print(B)
Hello("Mongo")
| [1]
|
|
|
Z="a" B="F" Print(Z+"B")
| [1]
|
|
def Hello(F) A="Hi " + F
Hello("Julie")
| [1]
|
|
def DoSum(Z,F) X=Z - F Print(X)
DoSum(8,2)
| [1]
|
|
|
|
|