Java Introduction

            Java is a programming language. Java is a high-level, robust, object-oriented, general-purpose, class-based, programming language. It is also called WORA(write once and run anywhere), which means compiled Java code can be run on any platform.

        Java is fast, secure and reliable. Java is Object Oriented. However, it is not considered pure object-oriented as it provides support for primitive data types (like int, char, boolean, etc) Java was developed by Sun Microsystems (Now Oracle) in the year 1995. James Gosling is the father of Java. Before Java, its name was Oak. Since Oak was already a registered company, so James Gosling and his team changed the name from Oak to Java.






Example:-

class CodeForSolution{  

    public static void main(String args[]){  

     System.out.println("Code for solution");  

    }  

 


Post a Comment (0)
Previous Post Next Post