Read the Following program:
try:
if '2' != 2:
raise "JavaTpoint"
else:
print("JavaTpoint has not exist")
except "JavaTpoint":
print ("JavaTpoint has exist")
What will be the output of this statement?
i) invalid code
ii) JavaTpoint has not exist
iii) JavaTpoint has exist
iv) none of these above