(Choose 1 answer)
1. package mail;
2.
Given the following code, which of the results that follow would you expect?
3. interface Box {
4. protected void open();
5. void close();
6. public void empty();
7.}
A. The code will not compile because of line 4.
B. The code will not compile because of line 5.
C. The code will not compile because of line 6.
D. The code will compile.