Java Features
Java is a language that has become successful and popular because of the following features. Join for free a shot of dev knowledge What are the features of Java? Java is a language that has become successful and popular because of the following features. Platform independent The Java programs compiled on one operating system can be transferred and executed on any Operating System without modifications. This can be achieved through an application called Java Virtual Machine , as follows: Once we create the java source code, we compile it using Java Compiler. The compiler then creates something called Java Byte code. This byte code can be copied and executed anywhere, even on mobile phones. Thus, Java is also called an Architecture Nuetral Language. Object-Oriented Java is the only language that is a purely object-oriented language. This means that every OOP concept is supported by Java. Also, it should be noted that even the main() function needs to be defined under a class. Co