What will be the output of the following PHP code ?<br/>echo $x-- != ++$x; 1 error 0 no output TRUE ANSWER : ? YOUR ANSWER : ?
What will be the output of the following PHP code ?<br/>$color1 = "red";<br/>$color2 = "1";<br/>echo "$color1" + "$color2"; 1 0 red1 red 1 TRUE ANSWER : ? YOUR ANSWER : ?
What will be the output of the following PHP code ?<br/>echo "Hello World" Hello world Nothing Error Hello world in italics TRUE ANSWER : ? YOUR ANSWER : ?
What will be the output of the following PHP code ?<br/>$on_e = 1;<br/>$tw_o = 2;<br/>$thre_e = 3;<br/>$fou_r = 4;<br/>echo $on_e / $tw_o + $thre_e / $fou_r; 0.05 1.25 Error 0.75 TRUE ANSWER : ? YOUR ANSWER : ?
If you do something to an integer that makes it larger than the maximum allowable integer or smaller than the minimum possible integer, the PHP interpreter converts the result into a . . . . . None of above String Integers Floating point number TRUE ANSWER : ? YOUR ANSWER : ?
What will be the output of the following PHP code ?<br/>$a = 0x6db7;<br/>print $a<<6; 0x6dc0 error no output 1797568 TRUE ANSWER : ? YOUR ANSWER : ?
What will be the output of the following PHP code ?<br/>$a = 5;<br/>$b = -7;<br/>$c =0;<br/>$d = ++$a && ++$b || ++$c;<br/>print $d;<br/>print $a; 15 16 05 06 TRUE ANSWER : ? YOUR ANSWER : ?
What will be the output of the following PHP code ?<br/>$var1 = 0;<br/>$var1 = ($var1 + 5)++;<br/>echo $var1; 5 error 7 6 TRUE ANSWER : ? YOUR ANSWER : ?
What will be the output of the following PHP code ?<br/>$i = "";<br/>while ($i = 10) {<br/>print "hi";<br/>}<br/>print "hello"; infinite loop hihello hello error TRUE ANSWER : ? YOUR ANSWER : ?