Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

write a script to check whether user enter a value is a
leap year or not?

Answer Posted / sourisengupta

#call this function by passing the year....


sub isLeapyear
{
$year=shift;
if($year%4==0){
if($year%100==0){
if($year%400==0)
return 1;
return 0;
}
return 1;
}
}

Is This Answer Correct ?    7 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What does the qq{ } operator do?

903


Explain ivalue?

949


You want to connect to sql server through perl. How would you do that?

901


What is grep used for in perl?

888


Which functions in Perl allows you to include a module file or a module and what is the difference between them?

962


What are the arguments and what do they mean in perl programming?

967


There are some duplicate entries in an array and you want to remove them. How would you do that?

878


What is “grep” function in perl?

964


We all know private variables exist in perl. But do private METHODS exist in perl ? Eg ?

2431


Explain socket programming in perl?

876


What does 'do' statement do in perl?

940


Explain subroutine?

875


Which functions in perl allows you to include a module file.

932


What does the q{ } operator do?

863


Which functions in perl allows you to include a module file. State their differences.

914