This assignmnent has two projects. You can zip each one separately and upload them to the assignments box.
Project 1: Classes,
Inheritance, Interfaces
Because these topics are so important this project makes use of all of them. For this project create a console application (not a Windows application.)
As you know, .NET does not support multiple inheritance. Interfaces overcome that deficiency.
If the Automobile object drives and runs out of gas a message should appear saying that. (Use Console.Writeline for the message.)
Project 2: Arrays
Modify the ArrayOfObjectsExample project. Create a new console application that is like the example project. Instead of a Cartoon class, create a new class of your own. Keep the new class simple with only two fields in it. Make sure the testing class creates 2 objects from your new class and displays their values.