How do you create an object of a class named Car?
Car
$obj = new Car();
$obj = Car();
new $obj = Car();
Car obj = new;
This question is part of this quiz :