Skip to main content

JAVA HISTORY





History of JAVA:
                                                       Java is the object-oriented, general-purpose programming language developed by James Gosling, Patrick Naughton, Chris Warth, Ed Frank, and Mike Sheridan at Sun Microsystems, in 1991. Actually, Java was designed for the development of software for electric devices. It took 18 months to run the first version. This language was initially called "Oak", but was renamed as "JAVA" in 1995.

Java Features:
                        Java has bundles of features, they are as follows:
        1) Object-oriented
        2) High performance
        3) Distributed
        4) Robust
        5) secure
        6) Simple, Small
        7) Platform-independent
        8) Portable
        9) Interpreted
        10) Multithreaded
        11) Interactive
        12) Dynamic and Extensive.

            These are some valuable features of java. From the next post, we will start with the coding part.

Comments

Post a Comment

Popular posts from this blog

Literals

Literals:                 Any constant value which can be assigned to the variable is called literal.     1 . Integer Literals:                                        For integral data types ( byte, short, int, long ), we can specify a literal value in the following base...                         a) Decimal literal (base 10):                                                     Allowed digits are 0 to 9.                               ...

Data Types

Data Types:                         In java, Every variable and every expression has some type. Each and every data type is clearly defined. Every assignment should be checked by the compiler for data compatibility.                              Because of the above reason, we can conclude, Java language is strongly typed programming language. Que :-  Is java pure object-oriented programming language? Ans :- Java is not considered as the pure object-oriented programming language, because several oop features are not satisfied by java (like operator overloading, Multiple inheritances, etc.).               Moreover, we are depending on primitive data types, which are non-objects. Except for boolean and char, remaining data types are considered as signed data types. Because we ca...

The first simple program in java

The first program in java