• A Complex.prototype.conj = function() { return new Complex(this.r, -this.i); };
  • B Complex.prototype.conj = function() { return Complex(this.r, -this.i); };
  • C Complex.prototype.conj = function() { return (this.r, -this.i); };
  • D Complex.prototype.conj = function() { new Complex(this.r, -this.i); };
  • Share this MCQ