When executing the given Python code, which of the following exceptions will occur?
a = 10
b = 0
c = a/b
print(c)
1
SyntaxError
2
ValueError
3
ZeroDivisionError
4
TypeError
When executing the given Python code, which of the following exceptions will occur?
a = 10
b = 0
c = a/b
print(c)