-
Which of the following is an incorrect statement about packages?
-
- All variables are static and methods are public if interface is defined pubic
- All variables in interface are implicitly final and static
- Interfaces are specified public if they are to be accessed by any code in the program
- Interfaces specifies what class must do but not how it does
- None of these
Correct Option: A
All methods and variables are implicitly public if interface is declared public.