Vidyalelo
PHP · Q42

Operators And Expressions

Programming · PHP · question 42

Q42

What will be the output of the following PHP code ?

A.
15
B.
10 + 5
Answer
C.
$z
D.
y

Answer: Option B

Solution

Answer: Option B
Solution:
Variable z will store 10 + 5 because 10 + 5 is given in double-quotes.