In Java, can a "try" block have multiple "catch" blocks?

In Java, can a "try" block have multiple "catch" blocks? Correct Answer Yes, a "try" block can have multiple "catch" blocks to catch different types of exceptions

Related Questions

In nested try catch blocks, if both inner and outer catch blocks are unable to handle the exception thrown, then ______________
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 "catch" block catch multiple exceptions?
In Java, can a "finally" block be used without a "try-catch" block?
How many catch blocks can a single try block can have?