Examlex

Solved

Consider the Following Code Snippet: Try

question 69

Multiple Choice

Consider the following code snippet: try
{
PrintWriter outFile = new PrintWriter(filename) ;
WriteData(outputFile) ;
}
Catch (IOException exception)
{
) . .
}
Finally
{
OutputFile.close() ;
}
What is wrong with this code?


Definitions:

Related Questions