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 constants and how to create constants in java?
there are N number of matchboxes numbered 1...N.each matchbox contain various number of stick.Two player can alternatevely pick some amount of stick from the higest stick containing box . The player is condidered win if there is no stick after his move.Find the final move so that the move player win. Note:In case the number of stick is equal ,pick the stick from the higest numbered box.
Differences between C and Java?
Explain about fail fast iterators in java?
What does split function do in java?
What is anti pattern in java?
Difference between nested and inner classes ?
In case of inheritance what is the execution order of constructor and destructor?
State the difference between creating string as new () and literal.
Can we override a variable in java?
What is considered an anti pattern?
how can you catch multiple exceptions in java?
What do you mean by an interface in java?
Explain runtime exceptions?
Explain about interthread communication and how it takes place in java?