Hi !
Object = Instance of a Class.
Instance = Object
Reference = A variable that holds bit patern which points to the Object in the Memory (Heap).
Example:
public class Car {
int year;
String make;
public static void main(String[] args) {
Car mycar = new Car(); // Create a Car object.
// Here mycar = Reference variable that points to the Object of type Car
}
}