Home » JAVA Programming » Java Basic » Question
  1. What is the difference between servlets and applets?
    i.Servlets execute on Server; Applets execute on browser
    ii.Servlets have no GUI; Applet has GUI
    iii.Servlets creates static web pages; Applets creates dynamic web pages
    iv.Servlets can handle only a single request; Applet can handle multiple requests
    1. i,ii are correct
    2. i,iii are correct
    3. i,ii,iii are correct
    4. i,ii,iii,iv are correct
    5. None of these
Correct Option: A

Servlets execute on Server and doesn’t have GUI. Applets execute on browser and has GUI.



Your comments will be displayed only after manual approval.