a method cannot be declared as throwing more than one exception.
B
Correct answer
Explanation
A method can declare throwing multiple exceptions using a comma-separated list in the method signature. For example: 'void myMethod() throws IOException, SQLException, CustomException {...}' is valid syntax. The throws clause can include any number of checked exceptions that the method might throw but not handle internally.