1. Identify the output of the code * <?php $year=2036; if($year%400==0 || ($year%100!=0 && $year%4==0)) echo $year.' is Leap Year'; else echo $year.' is Not a Leap Year'; ?>
Standard input is empty
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