<< Chapter < Page | Chapter >> Page > |
True or False?
Overriding the doGet method to support the GET command also automatically supports the HTTP HEAD command.
True or False?
The fundamental purpose of the GET command makes it possible for the client to get something from the server. When you override the doGet method, you should, as a minimum:
True or False?
The headers that you create in your overridden doGet method should include content type and encoding. The content type must be set beforethe writer is accessed. The setContentType method of the response object can be called to set the content type. The getWriter method of the response object can be called to get access to the output stream.
True or False?
The class definition for an HTTP servlet extends the JavaHttpServlet class.
True or False?
Servlets typically process requests from multiple clients concurrently in a multithreaded manner. However, it is possible to write servlets that arerestricted to single-threaded operation by implementing the SingleThreadModel interface.
True or False?
When writing a servlet for multi-threaded operation, you should use the fewest possible number of instance variables, and synchronize access to them if you use them.
True or False?
For servlets that extend the HttpServlet class, the following methods may be overridden to cause your servlet to interact with theclient.
What is the meaning of the following two images?
These images were inserted here simply to insert some space between the questions and the answers to keep them from being visible on the screen at thesame time.
This image was also inserted for the purpose of inserting space between the questions and the answers.
False.
For servlets that extend the HttpServlet class, the following four methods may be overridden to cause your servlet to interact withthe client.
True.
True.
False. The class definition for an HTTP servlet extends the HttpServlet class.
True.
True.
True.
False. The doGet method corresponds to the HTTP GET command. If you don't override the method, the default implementation reports an HTTP BAD_REQUEST error when the browser sends a GET command.
True.
True.
False.
Object references of the following types are passed to a servlet when it called by a client:
True.
False. All servlets must implement the Servlet interface. You can implement it directly. However, it is more common to implement itindirectly by extending a class that implements the interface (such as HttpServlet ).
True.
False. The use of servlets is not restricted to HTTP servers.
False. You must run your servlet under the control of a Java-enabled server program. Not all HTTP servers support Java servlets.
True.
This section contains a variety of miscellaneous information.
Financial : Although the Connexions site makes it possible for you to download aPDF file for this module at no charge, and also makes it possible for you to purchase a pre-printed version of the PDF file, youshould be aware that some of the HTML elements in this module may not translate well into PDF.
I also want you to know that, I receive no financial compensation from the Connexions website even if you purchase the PDF version ofthe module.
In the past, unknown individuals have copied my modules from cnx.org, converted them to Kindle books, and placed them for sale onAmazon.com showing me as the author. I neither receive compensation for those sales nor do I know who does receive compensation. If youpurchase such a book, please be aware that it is a copy of a module that is freely available on cnx.org and that it was made andpublished without my prior knowledge.
Affiliation : I am a professor of Computer Information Technology at Austin Community College in Austin, TX.
-end-
Notification Switch
Would you like to follow the 'Object-oriented programming (oop) with java' conversation and receive update notifications?