admin

admin

Program Control Statements

Decision Constructs Java supports two selection statements: if and switch. These statements allow you to control the flow of your program’s execution based upon conditions known only during run time.  The if-else Statement The if statement is Java’s conditional branch statement. It…

Data Types and Operators

Why Data Types are Important in Java? Java’s Primitive Types Java defines eight primitive data types: byte, short, int, long, float, double, char and boolean. Group Description Integers This group includes byte, short, int, and long, which are for whole-valued…

Java Fundamentals

The History and Philosophy of Java Object-Oriented Programming Java Development Kit (JDK) The Java Development Kit is an implementation of either one of the Java Platforms; Standard Edition, Enterprise Edition, of Micro Edition platforms released by Oracle Corporation in the…