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. ?>
  8.  
Success #stdin #stdout 0.03s 26000KB
stdin
Standard input is empty
stdout
1. Identify the output of the code *
2036 is Leap Year
Select one:

Not a leap year


None of the above


2036 is a Leap year


Leap year