Tuesday, 30 August 2016

Development Of JAVA Program

Compiler : Is a translator which is used to convert source code into intermediate language,
Interpreter : It is used to transalate the resultant intermediate code to Machine Code .

Here java use Javac compiler and Java interpreter

Source code is converted into byte code or class file using javac compiler ,
this code is platform independent,when we put this code to other os it will run,

then the bytecode is converted into machine code using java (interpreter) is nothing but JVM(Java Virtual Machine) it contains JRE(Java Runtime Environment) + JIT(Just In Time) Compiler.

Sunday, 7 August 2016

Features Of Java?

Java Features :

One of the power full feature in java is platform independent language...yes it doesnot depend any operating system..it can be run on any OS..like windows,mac etc.,

Its Supports Multi threading..can execute more than one task concurrently to utilize CPU efficiently

Its Supports Networking

Architectural Neutral : It can be run on any speed processor ..

Exception Handling : To handle abnormal program termination..

Dynamic Memory Allocation : Object are created dynamically..

Java Is Fully OOPS or Partially OOPS?

anyone can tell the answer ???...

Saturday, 6 August 2016

What Is Programming Language Know Its From Basics

it is an artificial language which used to communicate with system especially for computer,,,It interact between computer and users
These are all known as programming languages which is used to develop any applications ,websites and so on

Featured post

Development Of JAVA Program