✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Dada las siguientes interfaces correctamente declaradas:
public interface IReunion {
Integer numParticipantes() throws Exception;
}
public interface ICelebracion thextends IReunion {
String motivo();
}
¿qué error contiene la siguiente declaración?
import java.util.List;
public interface IBanquete extends ICelebracion {
@Override List<String> motivo();
Integer numParticipantes(String paisOrigen)
}
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!