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 is the right way of declaring a variable in PHP?

i) $3hello

ii) $_hello

iii) $this

iv) $This

2 / 15

What will be the output of the following code?

   

   function track() {

   static $count = 0;

   $count++;

   echo $count;

   }

   track();

   track();

   track();

   ?>

3 / 15

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

4 / 15

If $a = 12 what will be returned when ($a == 12) ? 5 : 1 is executed?

5 / 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

6 / 15

What will be the output of the following PHP code?

   

   $a = 5;

   $b = 5;

   echo ($a === $b);

   ?>

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

8 / 15

What will be the output of the following PHP code ?

$i = "";

while ($i)

{  

   print "hi";

}

while($i < 8)

   $i++;

print "hello";

?>

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

   }

   ?>

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

   ?>

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

   ?>

12 / 15

What will be the output of the following PHP code?

   

   $score = 1234;

   $scoreboard = (array) $score;

   echo $scoreboard[0];

   ?>

13 / 15

What will be the output of the following PHP code?

   

   $a = "clue";

   $a .= "get";

   echo "$a";

   ?>

14 / 15

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

i) for loop

ii) while loop

iii) do-while loop

iv) foreach loop

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