Buzzword in Java - thejavaconceptspart

Buzzword in Java - thejavaconceptspart

Buzzwords in Java

The Feature of Java are also known as Java Buzzwords.

A list of Most important features of Java language is given as below

  1. Simple

    Java is very easy to learn and it's syntax is simple, clean and easy to understand.There is no need to remove unreferenced objects because there is an Automatic Garbage Collection in Java.

  2. Object-oriented

    Java is an object oriented programming language. Everything in Java is an object. Basic concepts of OOPS are:-

    1. Object
    2. Class
    3. Inheritance
    4. Polymorphism
    5. Abstraction
    6. Encapsulation
  3. Portable

    Java is portable" refers to the SE version. It means that you can run java bytecode on any hardware that has a compliant JVM

  4. Platform Independent

    Java is platform independent because it is different from other language like c, c++ etc which can compiled into platform specific machine while Java is Write once, run anywhere language.

  5. Secured

    Java is secured.Java is best known for its security.With Java We can develop virus-free systems.

  6. Robust

    Robust Simple means strong.There is lack of pointers that avoid security problem

  7. Architecture neutral

    Java is architecture neutral because there are no implementation dependent features for example:- The Size of Primitive type is fixed.

  8. High Performance

    Java is faster than other traditional interpreted programming languages because Java bytecode is close to a native code

  9. Multithreaded

    A thread is like a separate program, executing concurrently. We can write Java program that deal with many tasks at once by defining multiple threads.

  10. Distributed

    Java is distributed because it facilitate users to create distributed application in Java.

  11. Dynamic

    Java is dynamic language. It supports dynamic loading of classes. It means classes are loaded on demand.

Please Leave a Comment Below⬇

Comments

Popular posts from this blog

Advantages of Object Oriented Programming - Learn Java - The Java Concepts

Java Naming Conventions - thejavaconceptspart

Advantage and Disadvantages of Top-down Programming - Learn Java - The Java Concepts Part