Question 91
Given:
class Bird {
public void fly () { System.out.print("Can fly"); }
}
class Penguin extends Bird {
public void fly () { System.out.print("Cannot fly"); }
}
and the code fragment:
class Birdie {
public static void main (String [ ] args) {
fly( ( ) -> new Bird ( ));
fly (Penguin : : new);
}
/* line n1 */
}
Which code fragment, when inserted at line n1, enables the Birdie class to compile?
Question 92
Given the code fragment:
What is the result?
Question 93
Given the code fragment:
What is the result?
Question 94
Given:
What is the result?
Question 95
Given the code fragment:
What is the result?
