Which two interfaces are considered to be functional interfaces?

Which two interfaces are considered to be functional interfaces? (Choose two.)
A. @FunctionalInterface interface InterfaceC { public boolean equals(Object o); int breed(int x); int calculate(int x, int y);
}
B. @FunctionalInterface interface InterfaceD { int breed(int x);
}
C. @FunctionalInterface interface InterfaceE { public boolean equals(int i); int breed(int x);
}
D. interface InterfaceA { int GERM = 13; public default int getGERM() { return GERM; }
}
E. interface InterfaceB { int GERM = 13; public default int getGERM() { return get(); } private int get() { return GERM; } public boolean equals(Object o); int breed(int x);
}

Download Printable PDF. VALID exam to help you PASS.

One thought on “Which two interfaces are considered to be functional interfaces?

  1. B & E are correct.
    E is correct, as public boolean equals(Object o); does not count towards one method in interface, as it is a method from Object class.

Leave a Reply

Your email address will not be published. Required fields are marked *


The reCAPTCHA verification period has expired. Please reload the page.