πŸ“Š JavaScript
Q. Which is the correct code that returns a complex number that is the complex conjugate of this one?
  • (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); };
πŸ’¬ Discuss
βœ… Correct Answer: (A) Complex.prototype.conj = function() { return new Complex(this.r, -this.i); };

You must be Logged in to update hint/solution

πŸ’¬ Discussion


πŸ“Š Question Analytics

πŸ‘οΈ
236
Total Visits
πŸ“½οΈ
4 y ago
Published
πŸŽ–οΈ
Kirti
Publisher
πŸ“ˆ
94%
Success Rate