Friday, May 16, 2008

If you were to create an object model based on a bicycle, how would you implement it?

You could create a Bicycle class that contains FrontWheel and BackWheel
properties (implemented as objects). The FrontWheel and BackWheel objects
could contain a Spokes collection.

Your Title