In Java, can a method declare multiple exceptions using the "throws" keyword?

In Java, can a method declare multiple exceptions using the "throws" keyword? Correct Answer Yes, a method can declare multiple exceptions separated by commas

Related Questions

In Java, can a method declare "throws" for a checked exception that is not thrown in the method body?
In Java, can a method declare both "throws" and "throw" statements?
What is the purpose of the "throws" keyword in Java method declaration?
In Java, can a "catch" block catch exceptions of a subclass type before catching exceptions of a superclass type?