Answer :
Answer:
Write an interface named 'Test' with the following behavior:
abstract interface Test {
public abstract Duration getDuration();
public abstract Result check(int a);
public abstract double getScore();
}
Answer:
Write an interface named 'Test' with the following behavior:
abstract interface Test {
public abstract Duration getDuration();
public abstract Result check(int a);
public abstract double getScore();
}