The answer to you question is, No.
In case of constructors, the default constructor of the derived or child class implicitly calls super(). super() means, calling the constructor of the parent class. Hence when an object of the child class is created, a call goes to constructor of child class whose first line is an implicit call to super() (aka the constructor of the corresponding base class).Hence in the output, the statements of the parent class constructor are printed before those of the child class constructor.
In case of overriding, only the method you define in the child class is executed, when called using the child class object, because we are overriding the method which was defined in the parent class.