JAVA Interfaces and Abstract Classes
Given the following piece of code:public class School{ public abstract double numberOfStudent();}which of the following statements is true?
You must add a return statement in method numberOfStudent().
Class School must be defined abstract.
The keywords public and abstract cannot be used together.
The method numberOfStudent() in class School must have a body.