Which among the following function can be used to call default constructor implicitly in java?

Which among the following function can be used to call default constructor implicitly in java? Correct Answer this()

The function this() can be used to call the default constructor from inside any other constructor. This helps to further reuse the code and not to write the redundant data in all the constructors.

Related Questions

What is the prototype of the default constructor of this Java class?
public class prototype { }
Which is a good alternative instead of having one zero argument constructor and one single argument constructor with default argument?
If a class have default constructor defined in private access, and one parameter constructor in protected mode, how will it be possible to create instance of object?