-
-
Lecture1.1
-
Lecture1.2
-
Lecture1.3
-
Lecture1.4
-
Lecture1.5
-
Lecture1.6
-
Lecture1.7
-
Lecture1.8
-
Lecture1.9
-
Lecture1.10
-
Lecture1.11
-
Lecture1.12
-
Lecture1.13
-
Lecture1.14
-
What is Java?
Java is an object-oriented programming language. It was released by “SUN MicroSystems”
in June 1995. Java is popular for it’s “Write Once,Run Everywhere”
feature. This feature is enables a Java programmer written on a plateform to be executed on any plateform. It is the underlying technology that power “State-Of-The-Art”
programs including utilities, games and business applications. Lots of applications, websites that run on java.
There are four components in Java architecture:
- Java Programming Language(.java file)
- Java Class File(.class file)
- Java Application Programming Interface (Java API)
- Java Virtual Machine(JVM)
Write, compile and execute the program,that use java architecture steps.When you develop the code in java programming language
and compile it java class file is created. The JVM execute the class file. Between execution of the class file, the methods available
in Java API are use to make function calls.