Coding Quiz
Level 1, 2025-11-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=5
X=5
Y=F - X
Print(Y)
[1]
Z="G"
Q="d"
[1]
Y=4
X=6
Q=Y - X
Print(Q)
[1]
F="a"
Print("F")
[1]
def DoSum(A,B)
    F=A + B
    Print(F)

DoSum(1,3)
[1]
Y=7
F=2
B=Y + F
Print(B)
[1]
A="a"
Print("A")
[1]
def DoSum(VAR,B)
    A=VAR + B
    Print(A)

DoSum(4,6)
[1]
Z="c"
Print("Z")
[1]
def DoSum(X,A)
    E=X + A
    Print(E)

DoSum(9,2)
[1]
VAR="d"
Q="B"
[1]
VAR="C"
[1]
F=3
X=2
E=F - X
Print(E)
[1]
Z=6
Q=3
VAR=Z - Q
Print(VAR)
[1]
def DoSum(Y,Q)
    Z=Y * Q
    Print(Z)

DoSum(3,2)
[1]
A=5
X=4
Y=A + X
Print(Y)
[1]
Z="F"
Print(F)
[1]
F="g"
[1]
def Hello(Y)
    Q="Hi " + Y
    Print(Q)

Hello("Julie")
[1]
B="d"
Q="b"
[1]