What will be the output of the following PHP code?
<?php
$user = array("Ashley", "Bale", "Shrek", "Blank");
for ($x=0; $x < count($user); $x++)
{
if ($user[$x] == "Shrek") continue;
printf ($user[$x]);
}
?>
<?php
$user = array("Ashley", "Bale", "Shrek", "Blank");
for ($x=0; $x < count($user); $x++)
{
if ($user[$x] == "Shrek") continue;
printf ($user[$x]);
}
?>
A. AshleyBale
B. AshleyBaleBlank
C. ShrekBlank
D. Shrek
Answer: Option B
Solution (By Examveda Team)
The continue statement causes execution of the current loop iteration to end and commence at the beginning of the next iteration.Related Questions on Basic PHP
A. Both 1 and 3
B. Both 2 and 4
C. Only 2
D. Both 1 and 2
Which of the following is/are a PHP code editor?
1. Notepad
2. Notepad++
3. Adobe Dreamweaver
4. PDT
A. Only 4
B. All of the mentioned
C. 1, 2 and 3
D. Only 3
A. All of the mentioned.
B. Only 2
C. 2 and 3
D. 2, 3 and 4

Join The Discussion