J2SE Question:

What is try?

Tweet Share WhatsApp

Answer:

A Java keyword that defines a block of statements that may throw a Java language exception. If an exception is thrown, an optional catch block can handle specific exceptions thrown within the try block. Also, an optional finally block will be executed regardless of whether an exception is thrown or not.

Download J2SE PDF Read All 214 J2SE Questions
Previous QuestionNext Question
What is URN?What is transaction isolation level?