Basic Java Features
The below mentioned list will explain you the list of java features available. These features are found by comparing java with other technologies/languages. Java has set of advantages/features. Because of these features java becomes more popular than others. Features are, Simple Object oriented Platform independent Secure Robust Architecture Neutral Portable Dynamic Interpreted High performance Multi-threaded Distributed Simple: Java is simple in, Syntax is familiar to C++(So easier to programmer to learn after C++) Removing many confusing or rarely used features. Like Pointers, Structures/Unions, etc. Introducing Garbage Collection. Object Oriented: Java is Object Oriented language, means we organised our software as combination of different types of objects. Object Oriented Programming (Oops) is a methodology that simplifies software development and maintenance by providing some rules. Basic Oops concepts are, Object Class Inheritance Polymorp...