What will happen if an exception is raised in a try block and is not handled in any of the except blocks?

What will happen if an exception is raised in a try block and is not handled in any of the except blocks? Correct Answer The program will terminate with an error message

Related Questions

public class Test{ public static void main(String args[]){ try{ int a = Integer.parseInt("four"); } } } Which exception could be handled by the catch block for above?
Consider the following questions: A): Five wheel rotations on a bike takes you 12 yards. How many wheel rotations will be required to go 60 yards? B): In a college, 5 out of every 8 seniors live in apartments. Out of 30 seniors how many are likely to live in apartment? C): John and Lisa were walking at the same speed. Lisa started first. When Lisa has walked 6 blocks, john has walked 2 blocks. How many blocks would John cover when Lisa has covered 12 blocks. Choose the correct option.
In nested try catch blocks, if both inner and outer catch blocks are unable to handle the exception thrown, then ______________