/* Author: James Tam Version: March 2, 2021 */ public class SUV extends Car { public static final int FUEL_CONSUMPTION = 3; private boolean allWheelDriveEngaged; // The no argument constructor was written by James Tam public SUV() { allWheelDriveEngaged = false; } //Students must write the code for consumeFeul() //Students must write the code for toggleAllWheelDrive() }