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?
The keywords public and abstract cannot be used together.
You must add a return statement in method numberOfStudent().
The method numberOfStudent() in class School must have a body.