MCQ Single Best Answer Not Set

QWhich one of the following can be used to instantiate an object in PHP assuming class name to be Foo?

ID: #2575 Object Oriented Concept of PHP 1,007 views
Question Info
#2575Q ID
Not SetDifficulty
Object Oriented Concept of PHPTopic

Choose the Best Option

Click any option to instantly check if you're correct.

  • A $obj = new $foo;
  • B $obj = new foo;
  • C $obj = new foo ();
  • D obj = new foo ();
Correct Answer: Option C

Explanation

$obj = new foo ();

Share This Question

Challenge a friend or share with your study group.