Object variables are called references because they don’t actually store an object but reference it, as opposed to primitive type variables. You create an object from a class (that provides kind of a blueprint for it) using the new operator, which: Instantiates a class, i.e. invokes a class constructor (the ..Continue Reading