Solved

Public Interface FindTheError

Question 33

Essay

public interface FindTheError
{
    void firstMethod(int anIntNum)
   {
        System.out.println("Did you find the error?");
   }
}
What is the problem with the above interface? How would you correct the interface?

Correct Answer:

verifed

Verified

The interface has a method implementatio...

View Answer

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions