Transcript text: Question 7 (10 points)
A base class named Garden contains a private field width and a property public int Width that contains get and set accessors. A child class named VegetableGarden does not contain a Width property. When you write a class in which you declare an object as follows, what statement can you use to access the VegetableGarden's width?
VegetableGarden myGarden = new VegetableGarden();
myGarden.Width
myGarden.base.Width
VegetableGarden.Width
You cannot use Width with a VegetableGarden object.
Question 8 (10 points)
The root base class for all other class types is $\qquad$
Base
Super
Parent
Object