Examine the following declarations:
int area;
Point pt;
How many objects are created?
a. One---there is one object reference variable so there must be one object.
b. Two---one for each variable.
c. None---there is one object reference variable, but no objects yet.
d. Two---one for each type.