Which HTTP method represents a request for information about the supported methods on an HTTP server?()
第1题:
Which HTTP method has the characteristic that multiple indential requests may produce side effect beyond those of a single request()?
第2题:
Which statements concerning the methods notify() and notifyAll() are true?
第3题:
用什么方法可以从一个HTTP会话中获得对象?()
第4题:
Which methods from the String and StringBuffer classes modify the object on which they are called?()
第5题:
Which statement is true?()
第6题:
get
delete
pat
head
post
第7题:
Calling the yield method.
Calling the wait method on an object.
Calling the notify method on an object.
Calling the notifyAll method on an object.
Calling the start method on another Thread object.
第8题:
A class’s finalize() method CANNOT be invoked explicitly.
super.finalize() is called implicitly by any overriding finalize() method.
The finalize() method for a given object is called no more than once by the garbage collector.
The order in which finalize() is called on two objects is based on the order in which the two objects became finalizable.
第9题:
The charAt() method of the String class.
The toUpperCase() method of the String class.
The replace() method of the String class.
The reverse() method of the StringBuffer class.
The length() method of the StringBuffer class.
第10题:
GET
INFO
HEAD
TRACE
OPTIONS
第11题:
javax.servlet.http.HttpServletRequest
javax.servlet.http.HttpSessionContext
javax.servlet.http.HttpsServletResponse
javax.servlet.http.HttpSessionBindingEvent
javax.servlet.http.HttpSessionAttributeEvent
第12题:
GET
PUT
POST
SEND
FORM
第13题:
Http method中,能传送大数据量的是()
第14题:
Upon a user’s first visit to the website, which two operations are always performed when the getSession method is called with no arguments in a servlet?()
第15题:
Which the HTTP method represents a request for information about the supported methods on an HTTP server?()
第16题:
You are creating a web form with this HTML: 11.
第17题:
You have a login.ascx control and to display it in a view which method u would use()
第18题:
Create an HTTP endpoint with NTLM authentication, and create a service principal name (SPN).
Create an HTTP endpoint with digest authentication, and create a service principal name (SPN).
Create an HTTP endpoint with integrated authentication, and create a service principal name (SPN).
Create an HTTP endpoint with Kerberos authentication.
第19题:
RenderPartial
Action
Render
RenderAction
第20题:
Local variables defined inside a method are destroyed when the method is exited.
Local variables are also called automatic variables.
Variables defined outside a method are created when the object is constructed.
A method parameter variable continues to exist for as long as the object is needed in which the method is defined.
第21题:
GET
ASK
SEND
HEAD
TRACE
第22题:
GET
PUT
POST
RETRIEVE
第23题:
All URLs returned by the server are rewritten.
An HttpSession object is created if necessary.
The user name and password of the user are checked.
The session ID is stored in the HTTP response as a cookie.
第24题:
Instances of class Thread have a method called notify().
A call to the method notify() will wake the thread that currently owns the monitor of the object.
The method notify() is synchronized.
The method notifyAll() is defined in class Thread.
When there is more than one thread waiting to obtain the monitor of an object, there is no way to be sure which thread will be notified by the notify() method.