Difference Between throw and throws in Java
throw is a statement inside the body: throw new IOException("missing");. throws is part of the signature: void read() throws IOException.
throw sends one object. throws can list many types. throw actually happens. throws is only a declaration for checked exceptions.
Answer with two columns, then one tiny method that uses both.
Let's take this on the board with one tiny Main class — no extra files. Output: Asha scored 72 then Pass. Real Main. Swap marks/name to show one idea from Difference Between throw and throws in Java. Start from main, go line by line, and stop at each print. That output is the proof for Difference Between throw and throws.
Two columns: throw vs throws. Then write one method that uses both.