<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">public class Client {
  public static void main(String[] args) {
    //Are the following statements valid?
    
    Car c1;
    //System.out.println(c1.getMake());
    //System.out.println(Car.getMake());
    //System.out.println(c1.isManual);
    
    
    System.out.println(Car.totalCars);
    
    
    //System.out.println(m);
    
    
    c1= new Car("VW");
    System.out.println(c1.getMake());
    System.out.println(c1.isManual);
    //System.out.println(c1.make);
    
    Car c2= new Car("Ford");
    
    System.out.println(Car.totalCars);
    System.out.println(c1.totalCars);
    System.out.println(c2.totalCars);
  }
}</pre></body></html>