Which type of error will be raised by the following Python code:
x = 10
y = 20
if (y > x)
print("y is greater than x")
1
ValueError
2
TypeError
3
IOError
4
Syntax Error
Which type of error will be raised by the following Python code:
x = 10
y = 20
if (y > x)
print("y is greater than x")