Constructors
This lesson discusses constructors in Java.
We'll cover the following...
Question # 1
There's no constructor for the class in the snippet below, how can instances of it be instantiated then?
public class Celebrity {
String Name;
int age;
}