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");
?>
✅ Correct Answer: (A)
Jitendra