Skip to main content

What is JAVA??

Java Programming



What is JAVA?

Developed by Sun Microsystems USA (James Gosling). A general purpose object oriented language. Based on C & C++. Designed for easy web/internet application.

Widespread acceptance. Java is a general-purpose, object-oriented programming language developed by Sun Microsystems of USA in 1991.
                                                       
Originally called Oak by James Gosling (one of the inventor of the language). Java was invented for the development of software for consumer electronic devices like TVs, Washing- machine, microwave oven etc. The main aim had to make java simple, portable and reliable. 


Introduction:

  Java is a high-level, third generation programming language, like C, FORTRAN, Smalltalk, Perl, and many others. You can use Java to write computer applications that play  games, store data or do any of the thousands of other things computer software can do. Compared to other programming languages, Java is most similar to C. However although Java  shares much of C's syntax, it is not C. Knowing how to program in C or, better yet, C++, will  certainly help you to learn Java more quickly, but you don't need to know C to learn Java. A Java compiler won't compile C code, and most large C programs need to be changed substantially  before they can become Java programs. What's most special about Java in relation to other programming languages is that it lets you write special programs called applets that can be downloaded from the Internet and played safely within a web browser. Java language is called as an Object Oriented Programming language and before beginning for Java, we have to learn the concept of OOPs(Object-Oriented Programming). 


Comments

Popular posts from this blog

DIFFRENCE BETWEEN JAVA AND C++

Java Programming JAVA :- 1. Java is true Object oriented language. 2. Java does not support operator overloading. 3. It supports labels with loops and statement blocks . 4. Java does not have template classes as in C++. 5. Java compiled into byte code for the Java Virtual Machine. The source code is independent   on operating system. 6. Java does not support multiple inheritance of classes but it supports interface. 7. Runs in a protected virtual machine. 8 . Java does not support global variable. Every variable should declare in class. 9.  Java does not use pointer. 10. It Strictly enforces an object oriented Programming paradigm. C++ :- 1. C++ is basically C with Object-oriented extension. 2. C++ supports operator overloading. 3. It supports go to statement. 4. C++ has template classes. 5. Source code can be written to be platform independent C++ typically compiled into machine code. 6. C++ supports multiple inheritance ...