source code Example
When you develop a program you write it in source code. Below is a program written in source code in the Java language. When a program is compiled it is converted into a convenient form called bytecode.
When a program is run it is the bytecode that is executed.
When this program is run a yellow box is drawn as shown.
class SourceCodeExample {
public static void main(String[] args) {
ABox b = new ABox();
b.draw();
}
}
