Multiple choice Which of the following statements is false regarding 'finally' keyword in Java? Finally block does not get executed in case an exception does not occur. There can be multiple finally blocks in a Java method. Finally block is optional. A try statement without a catch block must be followed by a finally block. The finally block executes even if no catch block executes. Reveal answer Fill a bubble to check yourself A Correct answer Explanation This is the correct answer. The given statement is false. The finally block executes even if an exception does not occur.