fork download
  1. 1. Identify the output of the code *
  2. <?php
  3. $year=2036;
  4. if($year%400==0 || ($year%100!=0 && $year%4==0))
  5. echo $year.' is Leap Year';
  6. else echo $year.' is Not a Leap Year';
  7. ?>
Success #stdin #stdout 0.03s 25680KB
stdin
Standard input is empty
stdout
1. Identify the output of the code *
2036 is Leap Year