







Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Community
Ask the community for help and clear up your study doubts
Discover the best universities in your country according to Docsity users
Free resources
Download our free guides on studying techniques, anxiety management strategies, and thesis advice from Docsity tutors
Unlock the full potential of Java programming with "The Java Programming Handbook: Key Features and Best Practices." This essential guide is perfect for both beginners and seasoned developers looking to enhance their understanding of Java's unique features and capabilities.
Typology: Study notes
1 / 13
This page cannot be seen from the preview
Don't miss anything!
2.Interpreted
▪ Java uses 2 stage system , as it uses both compiler & interpreter for its program execution.
▪ Firstly, Compiler converts program code(source code) into byte code which is then converted to machine code(class file) to any machine using Interpreter.
▪ The machine code thus generated can be executed on any system on which it is being executed.
3.Architectural Neutral(Platform Independent)
▪ Java programs can run on any platform , ie.they can run on different CPU and on different operating systems.
▪ Because of the byte code produced by the java Compiler can run on any machine which has Java Runtime Environment(JRE).
4.Object oriented language
▪ Java is an object oriented language as everything in java is an object.
▪ The objects & classes contain the program code and data.
▪ The java object model is easily extensible and classes can be used anywhere in a program in the form of packages.
6.Distributed
▪ Java is platform independent , ie.suitable for developing application for network.
▪ It can handle TCP/IP protocols and hence, applications developed in java can access remote objects on the internet like any objects on a local system.
7.Multithreaded
▪ Java supports multithreaded programming, which allows us to write a program that can perform more than one task simultaneously.
▪ User need not to wait for one program to finish one task, before starting the next task.
9.Dynamic
▪ It is dynamic in nature, ie.java program can link to new class libraries, objects, methods etc.. at the runtime.
▪ Java languages also provides the facility to include the functions of other languages like C & CPP. They are referred as ‘ native methods ’. These methods are also linked dynamically at runtime.