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

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

2 / 15

What will be the output of the following PHP code?

   

   $color = "maroon";

   $var = $color[2];

   echo "$var";

   ?>

3 / 15

Which of the following PHP statements will output Hello World on the screen?

i) echo (“Hello World”);

ii) print (“Hello World”);

iii) printf (“Hello World”);

iv) sprintf (“Hello World”);

4 / 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]);

   }

   ?>

5 / 15

What will be the output of the following PHP code?

advertisement

   

   $total = "25 students";

   $more = 10;

   $total = $total + $more;

   echo "$total";

   ?>

6 / 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 );

   ?>

7 / 15

What will be the output of the following PHP code?

   

   $score = 1234;

   $scoreboard = (array) $score;

   echo $scoreboard[0];

   ?>

8 / 15

What will be the output of the following PHP code?

   

   $a = 5;

   $b = 5;

   echo ($a === $b);

   ?>

9 / 15

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

i) if statements

ii) if-else statements

iii) if-elseif statements

iv) switch statements

10 / 15

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

i) $3hello

ii) $_hello

iii) $this

iv) $This

11 / 15

What will be the output of the following PHP code ?

$i = 2;

while (++$i)

{  

   while (--$i > 0)

       print $i;

}

?>

12 / 15

How to define a function in PHP?

13 / 15

What will be the output of the following PHP code ?

$i = 2;

while (++$i)

{  

   while ($i --> 0)

       print $i;

}

?>

14 / 15

What will be the output of the following code?

   

   function track() {

   static $count = 0;

   $count++;

   echo $count;

   }

   track();

   track();

   track();

   ?>

15 / 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"; }

   ?>

Your score is

UndilutedNG.com

To Top
%d