Home / CSE / PHP - CS :: Discussion

Discussion :: PHP - CS

  1. What will be the output of the following PHP code ?

    <?php

    $x = 3.3;

    $y = 2;

    echo $x % $y;

    ?>

  2. A.

     0

    B.

     1

    C.

     2

    D.

     Error

    View Answer

    Workspace

    Answer : Option B

    Explanation :

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


Be The First To Comment