निम्नलिखित में से कौन सा सिंटेक्स ट्राई-एक्सेप्ट क्लॉज़ लिखने के लिए सही है।
1
try:
[ program statements where exceptions might occur]
except (exception-name):
[ code to handle exception]
[ program statements where exceptions might occur]
except (exception-name):
[ code to handle exception]
2
try();
[ program statements where exceptions might occur]
except [exception-name];
[ code to handle exception]
[ program statements where exceptions might occur]
except [exception-name];
[ code to handle exception]
3
try:
[ program statements where exceptions might occur]
except (
[ code to handle exception])
[ program statements where exceptions might occur]
except (
[ code to handle exception])
4
इनमें से कोई नहीं