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 are the steps involved in configuring a server using cgi programming?

908


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

956


Show the use of sockets for the server and client side of a conversation?

895


How do you give functions private variables that retain their values between calls?

951


Give an example of the -i and 0s option usage.

901


What is automatic error handling in perl?

1059


What is perl programming?

1028


How to read file into hash array ?

1111


How does polymorphism work in perl?

921


Explain string comparison operators in perl.

1014


Is perl compiler or interpreter?

947


Explain lists in perl?

980


What is chomp() operator/function?

1072


What is 'rollback' command in perl?

960


What is the function of virtual documents in cgi programs?

967