1.
Which of the following class names is reserved in PHP?
2.
What is the output of the following PHP code:
<?php
$x=array("bcs","bcs","www","bcs","yyy","tttt");
$y=array_count_values($x);
echo $y['bcs'];
?>
3.
In PHP, which of the following is used to submit a document without using submit button?
4.
In PHP, which of the following function is used to check whether the $pathfunction stored exists or not?
5.
In PHP, which of the following statements about the ftp_fput() function is correct?
6.
In PHP, which of the following is used to pass the array of variables $_POST to the current script?
7.
In PHP, the Self keyword is used to access a static method ____________.
8.
In PHP, a method call using the parent class uses a __________________.
9.
What is the output of the following PHP code:
<?php
$x = 0;
for ($x)
{
print $x;
}
?>
10.
What is the output of the following PHP code:
<?php
$i;
for ($i = -3; $i < -5; ++$i)
{
print ++$i;
}
?>