✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Le code Java suivant se compile correctement ?...
import java.util.ArrayList;class Vehicule { private String immatriculation; public Vehicule(String immatriculation) { this.immatriculation = immatriculation; }}class Automobile extends Vehicule { private int tauxCO2; public Automobile(String immatriculation, int tauxCO2) { this.immatriculation = immatriculation; this.tauxCO2 = tauxCO2; }}
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!