Given:.
2. class MyClass { } 3. public class Shape extends MyClass { 4. public static void main(String[] args) { 5. MyClass ff = new MyClass(); 6. Shape b = new Shape(); 7. // insert code here 8. } 9. }
Which, inserted independently at line 7, compile? (Choose all that apply.)
C is the correct syntax.