Coding Quiz
Level 1, 2025-07-12
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
E="e"
[1]
def Hello(Y)
    X="Hi " + Y
    Print(X)

Hello("Edward")
[1]
E=4
X=4
F=E * X
Print(F)
[1]
def DoSum(Z,X)
    A=Z * X
    Print(A)

DoSum(5,4)
[1]
def DoSum(VAR,A)
    Y=VAR + A
    Print(Y)

DoSum(4,9)
[1]
X=2
Y=7
A=X + Y
Print(A)
[1]
Y="a"
Print(Y)
[1]
def Hello(A)
    Z="Hi " + A
    Print(Z)

Hello("Max")
[1]
VAR=8
F=7
B=VAR * F
Print(B)
[1]
X="E"
[1]
def Hello(B)
    Z="Hi " + B
    Print(Z)

Hello("Max")
[1]
VAR=2
Z=4
E=VAR * Z
Print(E)
[1]
def Hello(VAR)
    B="Hi " + VAR
    Print(B)

Hello("Max")
[1]
def DoSum(Y,B)
    E=Y + B
    Print(E)

DoSum(7,3)
[1]
Z=8
if Z > 6:
  Print("Yes")
else:
  Print("No")
[1]
def Hello(Q)
    Z="Hi " + Q
    Print(Z)

Hello("Flip")
[1]
E="A"
Print(A)
[1]
Z="F"
[1]
VAR=5
E=2
B=VAR * E
Print(B)
[1]
F="F"
[1]