What is an object A sequence of instruction Any value stored
     What is an object?  A sequence of instruction.  Any value stored in a variable.  An entity in your program that is manipulated by calling method.  Any input to a method.  Which statement cells a constructor with no construction parameters?  Circle c = new Circle ();  A call to a constructor must have construction parameter.  Circle c = new Circle;  Circle c = Circle()   
  
  Solution
[17] Object is an entity in your program [3]
[18] Constructor automatically called on NEW operator execute.
[1] Circle c = new Circle(); --> with no parameters constructor

