(Choose 1 answer)
Given the following code, which of the result that follow would you expect?
1. package TestInterface;
2.interface Demo {
4.protected void Input();public void Output();
3.
5.
public void Draw();
6.}
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.