Consider the following class definitions:
public class Class {
.....
}
public class Student extends Class {
.....
}
Which is a true statement?
a) Student inherits the constructors of Class
b) Student can override existing private methods of Class
c) Student can add new methods and private instance variables