TABLE 7 CarInterface [] cars = new CarInterface[10]; // Assume that array cars is populated with objects of types Truck and Bus for (int j=0; j < cars.length; j++) { System.out.println(car[j].getId( )); } [0027] Since array cars contains objects of both types Truck and Bus, it cannot be an array of type Truck or Bus.