What will be the output of the following program?
abstract class userInfo{
public $firsname;
public $lastname;
public function __construct($firstname,$lastname){
$this->firstname = $firstname;
}
abstract public function firstname();
}...
See more
Download the Study24x7 App, so you can connect and collaborate.