Get benefited from interview Q/A and Online Test section. Subscribe to this blog to get updates directly in your mail box.
Best View in Google Crome, Mozilla firefox or IE 7 or above

Thursday, January 12, 2012

Leap Year Calculator and JavaScript Source Code

By Definition, "A leap year is a year containing one extra day in order to keep the calendar year synchronized with the astronomical or seasonal year."

In a Leap Year, February month has 29 days.

If you are looking for the Algorithm or Source Code to find leap year, here it is.

Leap Year Algorithm:

Here is the Pseudo code to determine whether a year is a leap year or not.

if year modulo 4 is 0
then
if year modulo 100 is 0
then
if year modulo 400 is 0
then
is_leap_year
else
not_leap_year
else is_leap_year
else not_leap_year


Leap Year Calculator:


Enter the year you wish to check



Leap Year Calculator Source Code in JavaScript:

<script type="text/javascript">
function LeapYear()
{
x =0;
x= document.getElementById("txtin").value;


if(x=="")
{
document.getElementById("txtout").value="Year can't be blank";
}
else if(isNaN(x))
{
document.getElementById("txtout").value="Enter a valid Year";
}
else
{
if(x%4==0)
{
if(x%100==0)
{
if(x%400==0)
document.getElementById("txtout").value="Leap Year";
else
document.getElementById("txtout").value="Not Leap Year";
}
else
document.getElementById("txtout").value="Leap Year";
}
else
document.getElementById("txtout").value="Not Leap Year";
}
}
</script>
Enter the year you wish to check
<input id="txtin" type="text" /><button onclick="LeapYear()" type="button">Check Leap Year</button>
<input id="txtout" size="40/" type="text" />

You can use the same logic and create your own calculator in C# or VB.Net or any other Programming Language.

Let me know if you face any difficulties in implementing your own calculator.

Monday, December 26, 2011

How to Learn Dotnet Basics?

This article is intended for Students, freshers or experienced professionals who want to learn dotnet as beginners.

Classroom training in Dotnet:

To get started and familiarize with Dotnet Tools and Techniques , a classroom training in dotnet is very helpful. You can learn many things in a short span of time. So, enroll yourself in a good Dotnet training programme.

Online tutorials:

There are many useful websites that guides you with Dotnet step by step tutorials, examples etc. There are also a lot of dotnet videos tutorials available in the internet.

Here are some useful websites to get started:
http://www.asp.net/web-forms/tutorials
http://www.asp.net/web-forms/videos
http://www.dotnetspider.com/tutorials
http://www.w3schools.com
http://asp.net-tutorials.com
http://www.csharp-station.com/Tutorial/

There are many more useful websites on Dotnet tutorials. If you come across a good website, do share in comments.

Books:

.Net Programming Black Book
Microsoft Press books
Wrox Publication

  © Blogger templates Shiny by Ourblogtemplates.com 2008

Back to TOP