Final answer:
A method that may throw a checked exception in Java must indeed either catch that exception or declare it in its header with a 'throws' clause, and failing to do so leads to a compile-time error. True
Step-by-step explanation:
The statement that a method that may throw a checked exception must either catch that exception or declare that it throws the exception in its header is true. In Java, a checked exception is a type of exception that must be either handled with a try-catch block within the method or declared in the method's signature with a throws clause. If a method could potentially throw a checked exception and fails to handle it, this leads to a compile-time error, compelling the programmer to address the possible issue of an exception being thrown.
In computer programming, a method is a block of code that performs a specific task. When a method may potentially throw a checked exception, the code inside the method must either catch that exception using a try-catch block or declare that it throws an exception in its header.