Examveda
Examveda

What will be the output of the following PHP code ?
<?php
$color1 = "red";
$color2 = "1";
echo "$color1" + "$color2";
?>

A. red1

B. red 1

C. 0

D. 1

Answer: Option D

Solution(By Examveda Team)

+ just returns the numeric value even though it is inside double quotes.

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

Join The Discussion

Related Questions on Operators and Expressions in php