In Java, if I declare,
MyClass obj;
Is obj called a \"reference\" or an \"object\". I am not instantiating class here.
obj is a Reference of type MyClass. The current reference does not point to anything (ie: null).