Ask Question

If the code in a method can potentially throw a checked exception, then that method must:

a.) handle the exception

b.) have a throws clause listed in the method header

c.) neither handle the exception nor have a throws clause listed in the method header

d.) either handle the exception or have a throws clause listed in the method header

+1
Answers (1)
  1. 7 October, 21:05
    0
    d.) either handle the exception or have a throws clause listed in the method header

    Explanation:

    A checked exception that can be thrown in a method, necessarily needs to be handled in the method in one of the two ways:

    Handle the exception in code Have a throws clause in method header

    For example, let us see both:

    a)

    public void mymethod () {

    / / Exception handling using try/catch block

    try{

    }

    catch (IOException e) {

    }

    }

    b)

    public void mymethod () throws IOException{

    / / Exception in the throws clause

    }
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “If the code in a method can potentially throw a checked exception, then that method must: a.) handle the exception b.) have a throws clause ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers