At what lines will there be compilation errors?
class Secret {
private void getSecret() {
}
void getSecret(int i) {
getSecret();/* LINE X */
}
protected void getTopSecret(String s) { /* LINE Y */
}
}
class TopSecret extends Secret {
void getSecret() {
super.getSecret(); /* LINE A */
}
public void getSecret(int i) {
getSecret(); /* LINE B */
super.getSecret(i); /* LINE C */
}
private void getTopSecret(String s) { /* LINE D */
}
}