I got 80%...but I don't know which one I missed..
One
In Java, what is the class name for mutable (modifiable) strings?
a. BufferString
b. String
c. Buffer
D. StringBuffer
e. None of the above
Two
Which of the following is not a server-side technology for generating dynamic web pages?
a. ASP
b. JSP
c. Cold Fusion
D. DHTML
e. None of the above
Three
What is the effect of adding a sixth element to a vector created as follows: Vector v = new Vector(5,10)?
a. ArrayIndexOutOfBoundsException
b. Vector grows in size to a capacity of 10 elements
c. Vector grows in size to a capacity of 15 elements
D. Nothing, the vector will have grown when the fifth elemnt was added
e. None of the above
Four
An object that has to be passed as input data to an RMI (Remote Method Invocation) call must minimally implement which of the following interfaces?
a. java.rmi.Remote
B. java.io.Serializable
c. java.i

bjectOutput
d. All of the above
e. None of the above
Five
In Java Server Pages (JSP), what is the difference between the @include tag and the jsp:include tag?
a. They are the same.
B. The @include tag is evaluated only when the JSP is "compiled" into a servlet, not on every request.
c. They are the same, but @include has been depracated in the JSP 1.1 specification.
d. The jsp:include tag is only available when running Internet Explorer.
e. None of the above