What is the difference between an applet and a servlet?
Answer Posted / radhika
APPLETS:
1)It is a special type of java program which runs
on any web browser.
2)Applets resides at server but when client makes a
request it completely loaded into a place in the browser.
that place is known as SAND BOX.
3)Applet lives inside the sand box only. it does'nt
have any access to any things which exists out side of the
sand box.
4) Applets can't communicate with any other server
except where they resides.
5)Applets are useful to develop the static web pages.
SERVLETS:
1) Servlet is a purely server side program
2) Servlets always runs in the server.
3) Servlets can be placed in any web and
application servers.
4) Servlets are useful to develop the dynamic web
pages.
| Is This Answer Correct ? | 107 Yes | 11 No |
Post New Answer View All Answers
How many servlet objects are created?
How the servlet is loaded?
Name the different ways of session tracking.
how many jsp scripting elements are there and what are those?
Difference between doget and dopost?
Explain jsessionid?
What is meant by a web application
Can we override destroy method in servlet?
What is cookies in servlet with example?
Is it possible to have a constructor inside the servlet?
What is ServletContext object?
List out the difference between ServletConfig and ServletContext?
Why do we have servlet filters?
What is servlet configuration?
What is the process for chaining servlet?