In Java, can a method throw any checked exception without declaring it using "throws"?

In Java, can a method throw any checked exception without declaring it using "throws"? Correct Answer Yes, a method can throw any checked exception without declaration

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?