To call one constructor from another in the same class, you use the this() keyword as the first statement. For example, this(5) calls a constructor taking an int parameter. Option A is incorrect because constructor chaining is supported. Option C would create a new object, not call another constructor.