Skip to main content

Java: History

 HISTORY OF JAVA

Java is a general-purpose and the most popular object-oriented programming language. Due to its simplicity and easy to learn features, it is the first choice of programmers today. In addition to the object oriented features, it also provides the features such as platform independence, security, multithreading, portability etc. 

Java was developed by James Gosling in the early 1990's. Firstly it was called "Greentalk" by James Gosling, and the file extension was .gt. After that it was called "Oak"



Oak Tree
  Why JAVA Was Known As Oak?
Oak is a symbol of strength and chosen as a nationality tree of many countries like the U.S.A, France, Germany etc.
In 1995, Oak was renamed as "Java" 

Versions of Java
There are various versions of java released till now. These are


         
  1. JDK Alpha and Beta (1995)
  2. JDK 1.0 (23rd Jan 1996)
  3. JDK 1.1 (19th Feb 1997)
  4. J2SE 1.2 (8th Dec 1998)
  5. J2SE 1.3 (8th May 2000)
  6. J2SE 1.4 (6th Feb 2002)
  7. J2SE 5.0 (30th Sep 2004)
  8. Java SE 6 (11th Dec 2006)
  9. Java SE 7 (28th July 2011)
  10. Java SE 8 (18th Mar 2014)
  11. Java SE 9 (21st Sep 2017)
  12. Java SE 10 (20th Mar 2018)
  13. Java SE 11 (September 2018)
  14. Java SE 12 (March 2019)
  15. Java SE 13 (September 2019)
  16. Java SE 14 (Mar 2020)
  17. Java SE 15 (September 2020)
  18. Java SE 16 (Mar 2021)
  19. Java SE 17 (September 2021)
  20. Java SE 18 (March 2022)
Java SE 18 is the latest version of java which is  used nowadays
Extension To Save & Run Java Program
The Extension used to save and run java program is .java

Hence this is all about the history of Java Programming Language

Comments

Popular posts from this blog

HTML TAGS

  HTML  Html stands for HyperText Markup Language. The First version HTML was written by Tim Berners Lee in 1993. HTML TAGS:- HTML tags tells a web browser how to format text. You can use tags to format italics, line breaks, objects, bullet points, and more.  Some important HTML tags are as follows:- Paragraph Tag:- When we want to give headings in our html document text then we use heading tag. There are six levels of heading tags in html.These are:- Syntax:- <p>.........<\p> To write a paragraph in html document we use paragraph tag. It is a paired tag which means it contains both opening and closing tags. We can write our text inside <p>...</p> tag. Heading Tag:- To write a heading in our HTML document we use heading tag of html.The syntax of which is described below:- Syntax:-  There are 6 levels of heading in html document i.e. <h1>.........<\h1> <h2>.........<\h2> <h3>.........<\h3> <h4>.........<\h4> <h5&

Features of OOPs

 OBJECT ORIENTED PROGRAMMING  Meaning:- Object-Oriented Programming (OOP) is a programming concept that uses classes and objects.  It’s utilized to break down a software program into reusable code blueprints (called classes) that you may use to build specific instances of  Object-oriented programming languages include JavaScript, C++, Java, and Python, to name a few.  Features of OOPs:- The various features of Object Oriented Programming (OOPs) are as follows:- Fig: Features of OOPs  Object  An object is one of the important features of Object-oriented programming . An object represents a real-life entity which is an instance of a class.  Objects have mainly two characteristics of  state  and  behavior . The state is nothing but an identity of the object(data)  Behavior describes the function(method) of the object. Class A class is another feature of object oriented programming. A class can be defined as a blueprint from which we can create multiple objects.  For Example:- Any program