-
More than One Class
If more than one class is present in one Java file then what will be the java file name?
-
What happens if a try-catch-finally statement does not have a catch clause to handlean exception that is thrown within the body of the try statement
The exception propagates up to the next higher level try-catch statement (if any) orresults in the program's termination.