Question: Which statement creates a new object using the Person constructor? Which statement creates a new Person object called "student"?
- `var student = new Person();`
- `var student = construct Person;`
- `var student = Person();`
- `var student = construct Person();`
Answer: The correct answer of the above question is Option A:`var student = new Person();`