Home / CSE / PHP - CS :: Discussion

Discussion :: PHP - CS

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

    <?php

    class Constants

    {

    define('MIN_VALUE', '0.0');

    define('MAX_VALUE', '1.0');

    public static function getMinValue()

    {

    return self::MIN_VALUE;

    }

    public static function getMaxValue()

    {

    return self::MAX_VALUE;

    }

    }

    echo Constants::getMinValue();

    echo Constants::getMaxValue();

    ?>

  2. A.

     0.01.0

    B.

     01

    C.

     No output

    D.

     ERROR

    View Answer

    Workspace

    Answer : Option D

    Explanation :

    In a class constants should be defined const MIN_VALUE = 0.0;const MAX_VALUE = 1.0; instead.


Be The First To Comment