InterviewSolution
Saved Bookmarks
| 1. |
Question: Which of the following is true about servlets?Option 1:Servlets execute within the address space of web serverOption 2:Servlets execute within the address space of web server, platform independent and uses the functionality of java class librarieOption 3:Servlets are platform-independent because they are written in javaOption 4:Servlets can use the full functionality of the Java class libraries |
|
Answer» A servlet is a JAVA programming LANGUAGE class that is used to extend the capabilities of servers that host applications accessed by means of a REQUEST-response programming MODEL. Although SERVLETS can respond to any type of request, they are commonly used to extend the applications hosted by web servers.Explanation: |
|