Vidyalelo
PHP · Q20

Basic PHP

Programming · PHP · question 20

Q20

What will be the output of the following PHP code? echo ( a === b); ?>

A.
5 === 5
B.
Error
C.
1
Answer
D.
False

Answer: Option C

Solution

Answer: Option C
Solution:
=== operator returns 1 if b are equivalent and b have the same type.