What is the difference between an applet and a servlet?

Answers were Sorted based on User's Feedback



What is the difference between an applet and a servlet?..

Answer / 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

What is the difference between an applet and a servlet?..

Answer / ramadass

applet:It have graphical user interface.it runs in client
browser.
servlet:it have no graphical user interface.it run's in
server

Is This Answer Correct ?    49 Yes 9 No

What is the difference between an applet and a servlet?..

Answer / nitin soni (jack)

(1):Applet is a part of Core JAVA and Servlet of Advance
Java. Applet is client side program and Servlet is Server
side. When Applet runs it take the resources of client
whereas Servlet is processed at server.

(2):An Applet's class, jar files can be accessed and
downloadable by client but not so in case of servlet.

(3):Applets can run under any web browser their execution
is dependent on Client as they require JRE Whereas Servlets
do not require any thing specific at client side, as they
require java enabled web/application Server.

Is This Answer Correct ?    30 Yes 1 No

What is the difference between an applet and a servlet?..

Answer / sanjay

servlet operates within the domain of server while applet
does not required support for java in the java web browser.

Is This Answer Correct ?    20 Yes 5 No

What is the difference between an applet and a servlet?..

Answer / ravikiran.chd

Applet is teh application which runs on browser,servlet is
the one which runs on server

Is This Answer Correct ?    14 Yes 0 No

What is the difference between an applet and a servlet?..

Answer / pranavbapat

Applet is for a browser.
Servlet is for server.

Applet has GUI.
Server has no GUI.

Applet is client side coding.
Servlet is server side coding.

Applet operates within the domain of a web browser.
Servlet operates within the domain of a web server.

With applets, only static web pages can be developed.
With servlets, dynamic web pages can be developed.

Is This Answer Correct ?    10 Yes 1 No

What is the difference between an applet and a servlet?..

Answer / thamiz

Thanks Radhika for an extensive answer

Is This Answer Correct ?    9 Yes 6 No

What is the difference between an applet and a servlet?..

Answer / manjit k

Thanks Radhika

Is This Answer Correct ?    5 Yes 2 No

What is the difference between an applet and a servlet?..

Answer / sssk

applets extends the functionality of web browser, servlet extends the functinality of webserver.

Is This Answer Correct ?    3 Yes 0 No

What is the difference between an applet and a servlet?..

Answer / praveenkumar

thankyou very much ur explanation very nice, up to this
moment i felt confusion, right now i overcome that doubt.

Is This Answer Correct ?    7 Yes 5 No

Post New Answer

More Servlets Interview Questions

What are the steps involved in placing a servlet within a package?

0 Answers  


What are the differences between forward() method and sendredirect() methods?

0 Answers  


How an Image can be loaded in a Servlet ?

1 Answers  


Describe servlet?

0 Answers  


What are different Authentication options available in Servlets.

0 Answers  






What's the advantages using servlets than using cgi?

0 Answers  


What is lazy loading and what is Generic Servlet Class?

0 Answers  


Is it possible to send a mail from a servlet? Explain?

4 Answers  


Difference between java beans & servlets?

0 Answers  


Are Servlets by default thread safe or not? thanks in advance regards Sudhakar

3 Answers  


What is cookie? Why is cookie used?

0 Answers  


Which application server is best for java?

0 Answers  


Categories