Examveda
Examveda

What will be the output of the following PHP code ?
<?php
$y = 2;
if (**$y == 4)
{
    echo $y;
}
?>

A. 4

B. 2

C. error at line2

D. no output

Answer: Option C

Solution(By Examveda Team)

The ** is not a valid operator,only ++ and — exist.

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

Join The Discussion

Related Questions on Operators and Expressions in php