MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of the following? try: if '1' != 1: raise "someError" else: print("someError has not occurred") except "someError": print ("someError has occurred") |
| A. | someError has occurred |
| B. | someError has not occurred |
| C. | invalid code |
| D. | none of the mentioned |
| Answer» D. none of the mentioned | |