package class5_3_HalfExam2_Problem1Speakers_start;// Dr. Yoder. MSOE. 08 December 2016 public class Car extends Vehicle implements Speaker { /** * Describe the car and its location * @return a string representation of the object. */ @Override public String toString() { return "A car "+finishDescription(); } @Override public void speak() { System.out.println("Honk!"); } }