Syvum Home Page

Home > Quiz Games > Java Programming >

Java Programming : Flash Cards III


Learn Java programming through these flash cards.

Formats Worksheet / Test Paper Quiz Review
Flash Cards



Consider the following try .... catch block:
class TryCatch
{
public static void main(String args[ ])
{
try
{
double x = 0.0;
throw(new Exception("Thrown"));
return;
}
catch(Exception e)
{
System.out.println("Exception caught");
return;
}
finally
{
System.out.println("finally");
}
}
}
What will be the output?
 



Print Flashcards
Create Your Own Flash Cards


Contact Info © 1999-2025 Syvum Technologies Inc. Privacy Policy Disclaimer and Copyright