257.
Can we put a break statement in a finally block?
View Description
The finally block cannot have the break, continue, return and goto statements.
A break statement cannot exit a finally block. When a break statement occurs within a finally block, the target of the break statement must be within the same finally block; otherwise, a compile-time error occurs.