Examveda
Examveda

What will be the output of the following PHP code ?
<?php
$one = "one";
$two = "one";
print($one == $two);
?>

A. true

B. false

C. 1

D. error

Answer: Option C

Solution(By Examveda Team)

Since both the strings are equal the result 1 is printed on the screen.

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

Join The Discussion

Related Questions on Operators and Expressions in php