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
Which class should you use to obtain design information about an object in java programming?
What is use of super keyword in java?
Assume a thread has lock on it, calling sleep() method on that thread will release the lock?
What are advantages of exception handling in java?
How do you test a method for an exception using junit?
Which of the following classes will have more memory allocated?
What is method reference in java?
Explain an intermediate language?
What is string in java is it a data type?
What is the difference between heap and stack memory?
What are the fileinputstream and fileoutputstream?
Explain what are final variable in java?
What is the difference between path and classpath variables?
Can a final variable be null?
What is the final keyword in java?