In Java, Whenever we creates the child class, parent class object will be created or not?

No, Whenever a child class creates, only parent constructor will be executed but the parent object will not be created.

Whenever a class (child class) extends another class (parent class), the sub class inherits state and behavior in the form of variables and methods from its super class but it does not inherit constructor of super class.