Your task is to create two simple Java classes to represent a **Vehicle** and a **Car**. The goal is to understand a fundamental concept of object-oriented programming: **Inheritance**. You will learn how one class (Car) can get features from another class (Vehicle).
Vehicle should be able to "honk".Car should be able to "start the engine".Vehicle Class: This will be your parent class. It should have a public field for brand and a public method honk() that prints "The vehicle is honking!".Car Class: This will be your child class. It must **inherit** from the Vehicle class using the extends keyword. It should have its own public field for numberOfDoors and a public method startEngine() that prints "The car engine is started.".Main: In your main method, create a single object of the Car class.
honk() method (from the `Vehicle` class) and the startEngine() method (from the `Car` class) on the same car object.Your main method must demonstrate the program works by testing the following scenario:
Car object and assign it a brand (e.g., "Toyota") and number of doors (e.g., 4).