Examveda
Examveda

What will be the output of the following PHP code ?
<?php
if (!print "hi")
    if (print "hello")
print "hi";
?>

A. hi

B. hihellohi

C. hihi

D. no output

Answer: Option A

Solution(By Examveda Team)

Print returns true and thus the first if statement also is not executed.

This Question Belongs to PHP >> Control Structures(Loop In PHP)

Join The Discussion

Related Questions on Control Structures(Loop in PHP)