Difference between Application and Applet ?
Answer Posted / swetcha
In simple terms, an applet runs under the control of a
browser, whereas an application runs stand-alone, with the
support of a virtual machine. As such, an applet is
subjected to more stringent security restrictions in terms
of file and network access, whereas an application can have
free reign over these resources.
Applets are great for creating dynamic and interactive web
applications, but the true power of Java lies in writing
full blown applications. With the limitation of disk and
network access, it would be difficult to write commercial
applications (though through the user of server based file
systems, not impossible). However, a Java application has
full network and local file system access, and its
potential is limited only by the creativity of its
developers.
| Is This Answer Correct ? | 7 Yes | 6 No |
Post New Answer View All Answers
what are three ways in which a thread can enter the waiting state? : Java thread
Is java a pure object oriented language?
What is the structure of java?
What is use of super keyword?
Can you declare a private method as static?
What is internal iteration in java se 8?
What is object of class in java?
How do you use spaces in java?
How is string stored in java?
What is t type java?
Is java call by reference?
Explain the differences between static and dynamic variables?
What are the benefits of operations in java?
Under what conditions is an object’s finalize() method invoked by the garbage collector?
What are the loops in java?