Examveda
Examveda

What will be the output of the following PHP code ?
<?php
$x = 3.3;
$y = 2;
echo $x % $y;
?>

A. 0

B. 1

C. 2

D. Error

Answer: Option B

Solution(By Examveda Team)

% is the modulo operator. Unlike in C we can use it get reminder or floating point numbers in PHP.

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

Join The Discussion

Related Questions on Operators and Expressions in php