PHP MCQ Object Oriented Concept of PHP Question #2575
Single Choice 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,028 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

Explanation

$obj = new foo ();

Share This Question

Challenge a friend or share with your study group.