✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Dadas las siguientes interfaces correctamente declaradas:
public interface IReunion {
Integer numParticipantes();
}
import java.time.LocalDate;
public interface IEvento {
LocalDate fechaInicio();
}
¿qué error contiene la siguiente declaración?
public interface ICelebracion extends IReunion, IEvento {
Integer numParticipantes() throws Exception;
}
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!