45.
What will be the output of the following Java code snippet?
try (InputStream is = ...) 
{
    // do stuff with is...
} 
catch (IOException e) 
{
    // handle exception
}