单项选择题


What OrderSErvlet method is invoked as a result of this from submission?()

A. doGET
B. doPUT
C. doPost
D. doTrace
E. doSubmit


您可能感兴趣的试卷

你可能感兴趣的试题

1.单项选择题

After execution. What are the values for i and j ()

A. i = 6 and j = 5
B. i = 5 and j = 5
C. i = 6 and j = 4
D. i = 6and j = 6

2.单项选择题


Which statement at Point X on line 1 allows this code to compile and run?()

A. import java.io.*.;
B. include java.io.*;
C. import java.io.PrintWriter;
D. include java.io.PrintWRiter;
E. No statement in needed.

3.单项选择题


What is the final value of i?()

A. 1
B. 2
C. 3
D. 4
E. 5

4.多项选择题


Which two are valid examples of method overriding?()

A. float getVar() {return x:}
B. public float getVar() {return x; }
C. public double getVar() {return x; }
D. protected float getVar() {return x; }
E. public float getVar(float f) {return f;}

5.多项选择题


Which two are true? ()

A. The foo initialization parameter CANNOT be set programmatically.
B. Compilation fails because getlnitParameter returns type Object.
C. The foo initialization parameter is NOT a servlet initialization parameter.
D. Compilation fails because ServletContext does NOT have a getlnitParameter method.
E. The foo parameter must de defined within the  element of the deployment  descriptor.
F. The foo initialization parameter can also be retrievedusing getSErvletConfig().  GetlnitParameter (“foo”).

6.多项选择题Given a header in an HTTP request: X-Retries:4  Which two retrieve the value of the header from a given ServletRequest request? ()

A. request.getHeader (“X-Retries”)
B. request.getIntHeader (“X-Retries”)
C. request.getRequestHeader (“x-Retries”)
D. request.getHeaders (“X-Retries”).get (0)
E. re request.getRequest Headers (“X-Retries”). Get (0)

7.单项选择题


After execution. What are the values for I and j?()

A. i = 6 and j = 5
B. i = 5 and j = 5
C. i = 6 and j = 4
D. i = 5 and j = 6
E. i = 6 and j = 6

8.单项选择题

When is the Float object. Created in line 3. eligible for garbage collection?()

A. just after line 5
B. just after line 6
C. just after line 7 (That is. As the method returns)
D. Never in this method

9.单项选择题Which is the valid identifier?()

A. false
B. default
C. _object
D. a-class

10.多项选择题Which the two choices are equivalent?()

A. 3 / 2
B. 3 < 2
C. 3 * 4
D. 3 << 2
E. 3 * 22
F. 3 <<<2

最新试题

Which two classes or interfaces provide a getSession method?()

题型:多项选择题

Which three are guaranteed to be valid for the  element of a web application deployment descriptor?()

题型:多项选择题

For a given product instance, which three jsp:setProperty attributes must be used to initialized its properties form the HTML form? ()

题型:多项选择题

A web application uses the HttpSession mechanism to determine if a user is “logged in”. When a user supplies a valid user name and password, an HttpSession is created for that user. The user has access to the application for only 15 minutes after logging in. The code must determine how long the user has been logged in, and if this time is greater than 15 minutes, must destroy the HttpSession. Which method in HttpSession is used to accomplish this?()

题型:单项选择题

Which two authentication mechanisms provide weaker protection than other mechanisms?()

题型:多项选择题

Which two are true?()

题型:多项选择题

Which the JSTL code snippet can be used to import content from another web resource?()

题型:单项选择题

What code, inserted at line 21, is called prior to a session being migrated to a different JVM assuming the web application containing MyExample is deployed in a container which supports distributed applications?()

题型:单项选择题

A custom JSP tag must be able to support an arbitrary number of attributes whose names are unknown when the tag class is designed. Which two are true? ()

题型:多项选择题

Which the three interfaces need to be declared in the web application deployment descriptor? ()

题型:多项选择题