Answer (Choose 1 answer)
Given the following code, which of the result that follow would you expect?
1. package TestInterface;2.interface Demo {
3.
protected void Input();public void Output();
450 6 }
public void Draw();
A. The code will not compile because of line 3.
B. The code will not compile because of line 4.
C. The code will not compile because of line 5.
Exit 37