Airplane c = new Airplane();
Flier f = new Airplane();
Athlete a = new SkiJumper("Ann", "Smith");
SkiJumper s = new SkiJumper("John", "Doe");
Which of the following statements needs a cast?
I. f = c;
II. a = s;
III. s = a;
Select one of the following: