Which of the following statements fill in the blank line to…
Which of the following statements fill in the blank line to make this code compile? (Choose all that apply.) interface CanHop { } public class Frog implements CanHop { public static void main(String[] args) { _______________frog = new TutleFrog(); } } class BrazilianHornedFrog extends Frog { } class TitleFrog extends Frog { }