Question:What will be the output of the following code?$a=10;If($a>5 OR <15) Echo “true”;Else Echo “false”
$a=10;
If($a>5 OR <15)
Echo “true”;
Else
Echo “false”
A True B False C No output D Parse Error
+ AnswerD
+ Report