A
Q. What will be the output of the following PHP code ?
Code:
<?php
$p = 150;
if ($p > 25)
printf("Jitendra");
else if ($p > 35)
printf("Jitu");
else if($p > 45)
printf("Jeetu");
?>
$p = 150;
if ($p > 25)
printf("Jitendra");
else if ($p > 35)
printf("Jitu");
else if($p > 45)
printf("Jeetu");
?>
- Correct Answer - Option(A)
- Views: 4
- Filed under category PHP
- Hashtags:
Discusssion
Login to discuss.