Web Technologies - PHP

page 1 out of 2

page 1 out of 2



Question 2     

what is the value of '$result' in this calculation?


$result = 25 % 6;





Question 3     

You want to list the modules available in your PHP installation. What command should you run?







Question 4     

Which php control structure is used inside a loop to skip the rest of the current loops code and go back to the start of the loop for the next iteration






Question 5     

Which of the following can be used to redirect to other page in PHP?







Question 7     

Which code would you use to print all the elements in an array called $cupcakes?






Question 8     

What is the output of the following code?

$arr=array('1','2','3');
array_push($arr,'4');
array_push($arr,'5');
array_pop($arr);
echo array_pop($arr);
echo sizeof($arr);






Question 10     

Your PHP page is unexpectedly rendering as totally blank. What should be done immediately?






page 1 out of 2

page 1 out of 2


Sign Up Page

Oops!!

To view the solution need to Login



Score : 0 / 0
L
o
a
d
i
n
g
.
.
.