Examveda
Examveda

What will be the output of the following PHP code ?
<?php
$a = "$winner";
$b = "/$looser";
echo $a,$b;
?>

A. $winner/$looser

B. /$looser

C. /

D. $looser

Answer: Option C

Solution(By Examveda Team)

Since variables $winner and $looser is not defined we only see / as output.

This Question Belongs to PHP >> Operators And Expressions In Php

Join The Discussion

Related Questions on Operators and Expressions in php