this( ) call : In java ‘this()’ is used to call a constructor from another overloaded constructor in the same class. It should be the first statement within the constructor. public class Car {public static void main(String[] args) {Toyota obj1=new Toyota(6,16);Toyota obj2=new Toyota();System.out.println(obj1.getvalues()); // output 6System.out.println(obj2.getvalues()); //output 0}} class Toyota{private int height;private int width;private int…