Applied Sciences,Calculus,Chemistry,Computer Science,Environmental science,Information Systems,Science Hide all
Teaching Since:
Apr 2017
Last Sign in:
103 Weeks Ago, 3 Days Ago
Questions Answered:
4870
Tutorials Posted:
4863
Education
MBA IT, Mater in Science and Technology
Devry Jul-1996 - Jul-2000
Experience
Professor
Devry University Mar-2010 - Oct-2016
Category > ProgrammingPosted 08 May 2017My Price9.00
output of the PHP code
Greeting
Attached are few coding questions ! Answer them correctly and be the winner of the reward .
Q1.What will be the output of the PHP code given below$v = 1;$m = 2;$l = 3;if( $l > $m > $v){ echo "yes";}Else{echo "no";}Answer hereQ2. What is the output of the following PHP source code:<!DOCTYPEhtml><html><body>php$txt="Hello world!";$x =5;$y =10.5;echo$txt;echo"<br>";echo$x;echo"<br>";echo$y;?></body>html>Answer hereQ3. Write a PHP program to print:Hello world!Hello world!Answer hereQ4. Write a PHP program (using a function) to print the message “MY PHP FUNCTON”.Answer hereQ5.What is the output of the following script?html><html><body>phpECHO "apple<br>";echo "apple<br>";EcHo"apple<br>";?></body>html>Answer here