Question 1: What do you mean by the term exception? How do we define try or catch block?
Question 2: What do you mean by finally block? When and how is it employed?
Question 3: Is it necessary to catch all kinds of exceptions?
Question 4: How many catch blocks can we employ with one try block?
Question 5: A catch can encompass comma separated multiple arguments. Illustrate True or False.
Question 6: Throwing an exception for all time causes program termination. Illustrate True/False.
Question 7: Define the exception "NoMatch found" which is thrown when a string is not equivalent to the "UPTEC". Write down a program which uses this exception.
Question 8: Write a program which throws an exception whenever an attempt is made to divide a given number through an even number in a loop that runs from 1 to 10.