Question: Which statement creates a new object using the Person constructor? Which statement creates a new Person object called "student"?

  1. `var student = new Person();`
  2. `var student = construct Person;`
  3. `var student = Person();`
  4. `var student = construct Person();`

Answer: The correct answer of the above question is Option A:`var student = new Person();`