Constructor and Parameterised Constructor doubt

After changing the default constructor, how are the previous tasks (which were being accomplished by the default constructor) done now?

Basically when we declare the object of class, even if you didnt have default constructor in class, the default constructor is automatically invoked. And then whatever constructor is used, values will be initalised as per it.

Ok. Thanks for clearing my doubt