The Quiz World
Home
>>
PHP Web Development Quiz
>>
All Questions
>> Question
Which of the following was not a PHP framework?
Options:
A) Joomla
B) Jquery
C) CakePHP
D) Zend
Answer : Jquery
PHP Web Development Quiz
Questions
What will be the output?
$x=array(1=>"paper",2=>"pen",3=>"pencil");
$y=array_keys($x);
echo $y[0];
?>