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 is the size of arraylist in java?
What is double data type?
Which data type is class in java?
Do loops java?
Why is method overloading not possible by changing the return type in java?
Can we have more than one package statement in the source file?
Is 64bit faster than 32 bit?
What is javac used for?
What technique is carried out to find out if a particular string is empty?
How do you remove duplicates in java?
Can a method be overloaded based on different return type but same argument type?
How we can run a jar file through command prompt in java?
Can we use string in switch case in java?
What’s meant by anonymous class?
What is final method in java?