Servlet Quiz 3 | Englishfreetest.com

  • Do test 20 minutes
  • Number Questions: 10 questions
  • By: englishfreetest.com

Here's the exercise 'Servlet Quiz 3 | Englishfreetest.com' about Technical Quiz - Technical Tests.


Put your knowledge about all things technology to the test Because everything tech, from computers and the internet to software and big data, changes rapidly on a day-to-day basis, it’s now a must to stay up to date with the technology that dominates our modern day lives. Are you up to speed on what’s going on in the tech industry today? Take our quiz to find out. Test how much you know about technology

You can find more to the lesson and more exercises. Technical Quiz - Technical Tests in here.

Finally, click here to "Test" for start practice exercise .

  • Test content
    A. Apache
    B. Tomcat
    C. JBoss
    D. Weblogic
    E. Both C and D
    A. If number of clients increases, it takes more time for sending response
    B. For each request, it starts a process and Web server is limited to start processes
    C. It uses platform dependent language e.g. C, C++, perl
    D. All mentioned above
    A. servlet container
    B. servlet config
    C. servlet context
    D. servlet filter
    A. DataInputStream data = new InputStream()
    B. DataInputStream data = response.getInputStream()
    C. DataInputStream data = request.getInputStream()
    D. DataInputStream data = request.fetchInputStream()
    A. A POST request results from an HTML form that specifically lists POST as the METHOD
    B. The service() method checks the HTTP request type as POST and calls doPost() method
    C. Both of the above
    D. None of the above
    A. The destroy() method is called only once at the end of the life cycle of a servlet
    B. The destroy() method is called after the servlet has executed service method
    C. Both of the above
    D. None of the above
    A. request.getlocale()
    B. response.getLocale()
    C. new Locale()
    D. None of the above
    A. Header.getProtocol()
    B. response.getProtocol()
    C. request.getProtocol()
    D. None of the above
    A. response.getServerPort()
    B. request.getServerPort()
    C. Header.getServerPort()
    D. None of the above