Showing posts with label Bytecode. Show all posts
Showing posts with label Bytecode. Show all posts

Applet and Servlet

Applet:


  • An Applet is a specific type of ByteCode, which can be embedded inside a HTML page.
  • It can be downloaded and Run by a Web Browser.



Servlet:


  • The Servlet is a resource on the Web Server.
  • It is made up of Java ByteCode and would remain on Server.
  • It is not delivered to Client like the Applet.





How JAVA Program Executes

How JAVA Program Executes ?

How Java Program Executes ?
JVM: Java Virtual Machine

Bytecode :
  • Java Source file is first Compiled and the output of this process is known as Bytecode.
  • It is collection of Instruction Set.