Question: Which statement sets the Person constructor as the parent of the Student constructor in the prototype chain?

  1. `Student.parent = Person;`
  2. `Student.prototype = new Person();`
  3. `Student.prototype = Person;`
  4. `Student.prototype = Person();`

Answer: The correct answer of the above question is Option B:`Student.prototype = new Person();`