UndilutedNG.com

CSC 202 Pre Test

0%
0
Created by Oladeji Timilehin Daramola

CSC 202

NOTE: The quiz is meant for revision purpose only!

Join the 200 level group to access other quiz CLICK TO JOIN

1 / 15

What is the value of $a and $b after the function call?

   

   function doSomething( &$arg ) {

       $return = $arg;

       $arg += 1;

       return $return;

   }

   $a = 3;

   $b = doSomething( $a );

   ?>

2 / 15

Which of the looping statements is/are supported by PHP?

i) for loop

ii) while loop

iii) do-while loop

iv) foreach loop

3 / 15

Which of the below statements is equivalent to $add += $add ?

4 / 15

What will be the output of the following PHP code?

   

   $a = 5;

   $b = 5;

   echo ($a === $b);

   ?>

5 / 15

What will be the output of the following PHP code?

   

   function calc($price, $tax="")

   {

       $total = $price + ($price * $tax);

       echo "$total";

   }

   calc(42);

   ?>

6 / 15

What will be the output of the following PHP code?

   

   $score = 1234;

   $scoreboard = (array) $score;

   echo $scoreboard[0];

   ?>

7 / 15

Who is the father of PHP?

8 / 15

What will be the output of the following code?

   

   function track() {

   static $count = 0;

   $count++;

   echo $count;

   }

   track();

   track();

   track();

   ?>

9 / 15

What will be the output of the following PHP code?

advertisement

   

   $total = "25 students";

   $more = 10;

   $total = $total + $more;

   echo "$total";

   ?>

10 / 15

What will be the output of the following PHP code?

   

   $team = "arsenal";

   switch ($team) {

   case "manu":

       echo "I love man u";

   case "arsenal":

       echo "I love arsenal";

   case "manc":

       echo "I love manc"; }

   ?>

11 / 15

What will be the output of the following PHP code?

   

   $user = array("Ashley", "Bale", "Shrek", "Blank");

   for ($x=0; $x < count($user); $x++){

       if ($user[$x] == "Shrek") continue;

           printf ($user[$x]);

   }

   ?>

12 / 15

Which is the right way of declaring a variable in PHP?

i) $3hello

ii) $_hello

iii) $this

iv) $This

13 / 15

Which type of function call is used in line 8?

   

   function calc($price, $tax)

   {

       $total = $price + $tax;

   }

   $pricetag = 15;

   $taxtag = 3;

   calc($pricetag, $taxtag);

   ?>

14 / 15

What will be the output of the following PHP code ?

$i = 2;

while (++$i)

{  

   while (--$i > 0)

       print $i;

}

?>

15 / 15

What will be the output of the following code?

   

   $foo = 'Bob';              

   $bar = &$foo;              

   $bar = "My name is $bar";  

   echo $bar;

   echo $foo;

   ?>

Your score is

UndilutedNG.com

To Top
%d