Skip to main content

Features of Java

Java Programming


Simple:

          Learning and practicing java is easy because of resemblance with c and C++. 

Object Oriented Programming Language:

                                                                                    Unlike C++, Java is purely OOP. 

Distributed: Java is designed for use on network;

                                                      it has an extensive library which works in agreement with TCP/IP. 

Secure: 

           Java  is  designed  for  use  on  Internet.  Java enables the construction  of  virus free, tamper free systems. Using Java Compatible Browser, anyone can safely download Java applets without the fear of viral infection or malicious intent. Java achieves this protection by confining a Java program to the Java execution environment and by making it inaccessible to other parts of the computer. We can download applets with confidence that no harm will be done and no security will be breached.

 Interpreted:

                  Java programs are compiled  to generate  the byte code. This byte code can be downloaded and interpreted by the interpreter. .class file will have byte code instructions and JVM which contains an interpreter will execute the byte code.    

Portable:

              In Java, many types of computers and operating system are in use throughout the world and are connected to the Internet. For downloading programs through different platforms connected to the Internet, some portable, executable code is needed. Java does not have implementation dependent aspects and it yields or gives same result on any machine. 


Multithreaded:

                            Executing different parts of program simultaneously is called multithreading. This is an essential feature to design server side programs.  


High Performance:

                             Along with interpreter there will be JIT (Just In Time) compiler which enhances the speed of execution.  



Comments

Popular posts from this blog

Byte Code:

Java Programming Byte Code: It is the unique characteristic property of the Java programming language. It is something like a normal text file. Therefore, it cannot be affected by virus. It is an intermediate between a human readable source and machine readable source. Byte codes are plate form independent. Therefore, JVM is plate form dependent to make Java programming plate form indepdent.  

DBMS LEARNING SHEET

                                                            Types of DATA Structured data are facts concerning objects and events. The most important structured data are numeric, character, and dates. Structured data are stored in tabular form. Unstructured data are multimedia data such as documents, photographs, maps, images, sound, and video clips. Unstructured data are most commonly found on Web servers and Web-enabled databases. Database A database is a collection of data that is organised in such a way that it provides efficient retrieval of desired information. This collected data could be in any format like printed, audio, electronic and graphic. Consider an example of an address book, it is also a database that provides information of personal contacts of persons. DBMS A Database Mana...

Difference between Class and Interface

Java Programming   *Difference between Class and Interface                                                  Class 1.  The members of a class can be constant or variables.  2. The class definition can contain code for each of its methods. That is, the methods can be    abstract or non-abstract. 3. It can be instantiated by declaring objects. 4. It can use various access specifier like public,private or protected.                                                Interface     1. The members of an interface are always declared as constant, i.e. their values are final.  2. The methods in an interface are abstract in nature, i.e., there is no code associated with  ...