Difference between Application and Applet ?
Answer Posted / janet
1. Application must be run on local machine where as applet
needs no explicit installation on local machine.
2.Application must be run explicitly within java compatible
virtual machine where as applet loads and runs itself
automatically in a java enabled browser.
3. application starts execution with it's main method where
as applet starts execution with it's init method
4.application can run with or without graphical user
interface where as applet must run within graphical user
interface.
| Is This Answer Correct ? | 14 Yes | 1 No |
Post New Answer View All Answers
Define an enumeration?
Is 0 an even number?
How do generics work?
What is gc()?
If you are given the name of the function at run time how will you invoke the function?
What is the order of arraylist in java?
what is abstract class in Java?
What is nested loop? What is dangling else condition in it?
Can one thread block the other thread?
Can a constructor be private and how are this() and super() method used with constructor?
What is the functionability stubs and skeletons?
Explain about varargs in java?
What is finalize method?
What is the abstraction?
Can a method inside a interface be declared as final?