Simple Program

How to Create Simple Stopwatch Program with Tkinter in Python

Submitted by razormist on
Learn on how to How to Create Simple Stopwatch Program with Tkinter in Python. A simple Python program where your can track your physical record. You can start the timer to test your speed endurance while running. This tutorial will teach how to create this simple program. Python Free Tutorial.

How to Create Multiplication Table in JavaScript

Submitted by razormist on
Learn on how to create How to Create Multiplication Table in JavaScript - A simple program that can generate a table of multiplication. This tool tends to help those who have a hard time dealing of multiplying numbers, this will eventually help you to be good in numbers. JavaScript Free Tutorial.

Word Per Minute Typing Test in JavaScript Free Source Code

Submitted by razormist on
Word Per Minute Typing Test in JavaScript Free Source Code - A simple web application that can exercise the typing speed of a person. The application will start the timer when you type your first letter in the text area. Try to expand your typing speed and beat your old record. JavaScript Free Source Code.

Calculate the Sum of Even Digits of the Given Numbers in VB.Net

Submitted by janobe on
In this tutorial I will teach you how to calculate the sum of even digits of a given number in vb.net. This method has the ability to accept the numbers from user. Then it will calculate the sum of even digits of a given number and display it in the textbox. This is just a simple program to do once you follow the steps below.

How to Get Armstrong Numbers Between 1 to 1000 in VB.Net

Submitted by janobe on
If you wonder how to get Armstrong numbers in VB.Net, simply follow the procedure below to see if a number is an Armstrong number. But, before that let’s learn first what Armstrong number is? Is a number that when you raise each digit of the number to the power of the number of digits and add them up you still get the original number. It will be easier with an example, take a look at this. For example, 153 is an Armstrong number since (1^3) + (5^3) + (3^3) =153.