Question: which of the following variable declaration within a class is invalid in PHP5?
A
B
C
D
private $type = “moderate”;
B
var $term = 3;
C
public $amn = “500″;
D
protected $name = ‘Quantes Private Limited’;
Note: Not available
$count=50; function Argument() { $count++; echo $count; } Argument() ?>