Animal with a method sound() that prints "Animal sound".Vehicle with a method move() that prints "Vehicle moves".AmphibiousCar that extends both Animal and Vehicle.Dog that extends only Animal and overrides sound() to print "Dog barks".Dog object and call its sound() method.