Which of the following are valid Functional Interfaces?(Choose any 3)

@FunctionalInterface
interface Assign {
double assess(int id, double percentage);
}

@FunctionalInterface
interface Assign {
double assess(int id, double percentage);
default double computeGrade(double cost) {
//implementation of computeGrade
}}

@FunctionalInterface
interface Assign {
double assess(int id, double percentage);
default double computeGrade(double cost) {
//implementation of computeGrade
}
static void display() {
//implementation of display
}
}

@FunctionalInterface
interface Assign {
double assess(int id, double percentage);
default double computeGrade(double cost) {
//implementation of computeGrade
}
static void display() {
//implementation of display
}
public String toString()
{
//Implementation of toString() method
}
}

Verified Answer
Correct Option - abc

To get all Infosys Certified Java Programmer Exam questions Join Telegram Group https://rebrand.ly/lex-telegram-236dee

Telegram