Question: ______ methods can be accessed from anywhere at any time.
A
B
C
D
E
Public
B
Private
C
Protected
D
All
E
none
Note: Not available
class test{
private $a;
function set($x){
$this->a =$x;
}
public function get(){
return $this->a;
}
}
$t1 = new test;
$t1->set(10);
echo $t1->get();______ operator to ensure that an object is of a particular type. You can also use _______ in the function declaration.