Java Features
The important features of Java language are Simple : As the word says - "Java is simple".That means it easy to learn java.You don't need any prerequisites like knowledge in any other language.It is simply like a nursery level programming language.Most of the complex and confusing features of other languages (C,C++) like pointers,multiple inheritance are removed from java Platform Independent : It means that if we write java program once, we can run on any platform (Windows,Linux,Mac) without performing any change. ie, Java follows Write Once Run Anywhere principle(WORA). Architecture Neutral : Any changes in your system like upgrading operating systems,processor and system resources will not force any changes in java programs.This is because java programs never communicate with the platform directly. Portable : Just like your mobile number is portable from one service provider to another without changing your mobile number,we can carry java byte code from any platform t...