In Java, if I declare,
MyClass obj;
Is obj called a \"reference\" or an \"object\". I am not instantiating class here.
'obj' is a variable. It holds either a reference or null. If it holds a reference, that refers to an object.