They require a 'throws' clause. Frame the concept in practical terms so you can explain it during interview discussion.
Checked exceptions must be declared in the method signature with `throws`. This communicates potential issues to the caller. For instance, `public void processOrder() throws NetworkException {}` alerts the caller to handle `NetworkException`.
Additional Notes
How do checked exceptions influence the method signature?