Javaliciousness
Javaliciousness
Java Basics
CC 103Computer Programming 1
LESSON Overview of Java
1 Language
CC 103Computer Programming 1
LESSON
1 Java Programming Language
CC 103Computer Programming 1
LESSON
1 Kinds of Java Programs
CC 103Computer Programming 1
LESSON
1 Java Program Execution
Compiling the program – use a Just-in-Time (JIT) compiler to
translate the Java program into byte-code.
CC 103Computer Programming 1
LESSON
1 Java Program Execution
Java Byte-Code
It is platform independent.
Interpreter
It is used to translate byte-code to machine language.
CC 103Computer Programming 1
LESSON
1 Java Program Execution
javac Welcome.java
in the command window of your system( the command
prompt in Windows).
The compiler checks the source program for syntax errors,
and if no error is found, translates the program into
bytecode. The bytecode is saved in the file with the .class
extension that represent the tasks to execute in the
execution phase.
CC 103Computer Programming 1
LESSON
1 Phases in Processing a Java Program
CC 103Computer Programming 1
LESSON
1 Phases in Processing a Java Program
CC 103Computer Programming 1