You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
System.out.println("When ever we are using System.exit(0) then JVM itself will be shutdown.\ncase 1. if exception occur in try block then , in this case finally block will be executed.\ncase 2. if exception not occur then finally block won't execute");
try
{
//here finally block won't be executed
System.out.println("try");
int a=10/0;//this line cause exception if we comment this line then finally block don't executed