This java program finds if a number is odd or even. If the number is divisible by 2 then it will be even, otherwise it is odd. We use modulus operator to find remainder in our program.
Java programming source code
import...
Sunday, August 23, 2015
Saturday, August 22, 2015
Friday, August 21, 2015
Thursday, August 20, 2015
Difference Between Java and C#
One of the most important aspects of C-derived languages is object orientation. Objects and classes allow programs to specify methods and variables in one portion of code and use them again wherever necessary. While the basic structures of class construction remain consistent between C# and Java,...
Wednesday, August 19, 2015
Comparing C++ and Java
Many developers already have experience with an object-oriented programming language like C++. As you make the transition to Java, you will encounter many differences, despite some strong similarities.
As a C++ programmer, you already have the basic idea of object-oriented programming, and the...
10 Major Differences Between C And JAVA
Here are the major differences between C And JAVA.
1. JAVA is Object-Oriented while C is procedural. Different Paradigms, that is.
Most differences between the features of the two languages arise due to the use of different programming paradigms. C breaks down to functions while JAVA breaks down...
Monday, August 17, 2015
Java Setup with Environment Variables
Download Java here.
After installing the latest version of java, you can manually set the path of the Environment Variables using following instructions.
Setting up the path for windows 2000/XP/7/8/8.1:
Assuming you have installed Java in c:\Program Files\java\jdk directory:Right-click on 'My Computer'...
Understanding the base elements of Java (Programming Language)
Java is a general-purpose computer programming language that is concurrent, class-based, object-oriented, and specifically designed to have as few implementation dependencies as possible. It is intended to let application developers "write once, run anywhere", meaning that compiled Java code can run...