There can be a try block without catch block but vice versa is not possible.

There can be a try block without catch block but vice versa is not possible. Correct Answer True

The try block may or may not have any catch block. But a catch block can’t be there in a program if there is no try block. It is like else-block can only be written if and only if if-block is present in the program.

Related Questions

Where should we place catch block of the derived class in a try-catch block?
In nested try-catch block, if the inner catch block gets executed, then______________
In Java, can a "finally" block be used without a "try-catch" block?