1.
In PHP, which of the following functions is used to destroy the cookies?
2.
In PHP, literal is a ___________________.
3.
In PHP, which of the following returns 1 on successful execution?
4.
In PHP, an abstract class has _____________ abstract methods.
5.
Which of the following is the valid PHP5 data type?
6.
What is the output of the following PHP code:
<?php

for (1; $z == 1; $z = 2)
print "In the loop
";

print "After the loop";
?>
7.
What is the output of the following PHP code:
<?php
$x = 10;
if ($x > 5 OR < 15)
    echo "true";
else
    echo "false";

?>
8.
What is the output of the following PHP code:
<?php
$c;
for ($c = -2; $c < -4; ++$c)
{
print ++$c;
}
?>
9.
What is the output of the following PHP code:
<?php
for ($w = -1; $w < 10;--$w)
{
print $w;
}
?>
10.
What is the output of the following PHP code:
<?php
for ($z = 1; $z < 10;++$z)
{
print "* ";
}
?>