Coding Quiz
Level 1, 2024-11-25
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
A="d"
Z="f"
[1]
F=6
if F < 7:
  Print("Yes")
else:
  Print("No")
[1]
E=9
if E > 3:
  Print("Yes")
else:
  Print("No")
[1]
F="D"
Print(D)
[1]
Y="F"
[1]
VAR=8
F=7
Y=VAR * F
Print(Y)
[1]
Q=9
B=1
X=Q + B
Print(X)
[1]
X=8
Z=9
E=X - Z
Print(E)
[1]
B=7
Q=2
X=B * Q
Print(X)
[1]
E=8
B=9
X=E - B
Print(X)
[1]
Y=3
VAR=1
X=Y - VAR
Print(X)
[1]
E=3
if E <= 5:
  Print("Yes")
else:
  Print("No")
[1]
def Hello(VAR)
    B="Hi " + VAR
    Print(B)

Hello("Octavian")
[1]
def DoSum(Y,X)
    E=Y * X
    Print(E)

DoSum(1,5)
[1]
def Hello(Y)
    Z="Hi " + Y
    Print(Z)

Hello("Felix")
[1]
A="a"
[1]
E="d"
Print(E)
[1]
B="b"
[1]
def Hello(X)
    E="Hi " + X
    Print(E)

Hello("Missy")
[1]
E="E"
B="A"
[1]