R
Q. what is the output of below program?
<?php $numb = 0; while ( $numb <= 10 ){ if ($numb % 2 == 0){ echo "{$numb} Even . "; }else{ echo "{$numb} Odd . "; } $numb++; } ?>
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. Which is the correct example of an Indexed array in PHP?
Q. Which PHP function is used to get the length of the string?
Q. Which of the following function is used to compress a string?
Q. What will be the output of the following PHP code ?
Q. What will be the output of the following PHP code?
Q. Single line comments can be placed in PHP script by using which symbol?
Q. What should be the correct syntax to write a PHP code?
Discusssion
Login to discuss.