1. What will be the output of the following PHP code?
<?php
echo (checkdate(4,31,2010) ? 'Valid' : 'Invalid');
?>
<?php
echo (checkdate(4,31,2010) ? 'Valid' : 'Invalid');
?>