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