Recent Posts

JAVA Tutorial II – Data Types, Scanners, and Java Math (Part I)

by Nikhil Palanki on September 16, 2011 • less than 1 minute read

Understanding Data Types is a necessity to be learned whenever learning a programming language. As stated in this tutorial, there are 6 major data types. But we’ll cover only 4 of them; Double, Float, Int, and Char. I...

JAVA Tutorial II – Data Types (Part II – Integers)

by Nikhil Palanki on September 16, 2011 • 3 minute read

In this tutorial, we’ll create simple programs using Eclipse that compute solid numbers. We’ll create a program the divides 2 numbers and a program that adds 2 numbers.

JAVA Tutorial II – Data Types (Part III – Floats)

by Nikhil Palanki on September 16, 2011 • 2 minute read

Floats can do what Ints cannot because Ints are stupid…Just kidding. People prefer Ints because “they use less memory.” Most computers nowadays can handle all of the floats so it wouldn’t be much of a problem to outso...