Java Multiple Choice Questions & Answers on Java.util package Vectors & Stack for Freshers

https://www.computersprofessor.com/2017/12/java-multiple-choice-questions-answers_23.html
1. Which of these class object can be used to form a dynamic array?
a) ArrayList
b) Map
c) Vector
d) ArrayList & Vector
Answer: d
Explanation: Vectors are dynamic arrays, it contains many legacy methods that are not part of collection framework, and hence these methods are not present in ArrayList. But both are used to form dynamic arrays.
2. Which of these are legacy classes?
a) Stack
b) Hashtable
c) Vector
d) All of the mentioned
Answer: d
Explanation: Stack, Hashtable, Vector, Properties and Dictionary are legacy classes.
3. Which of these is the interface of legacy?
a) Map
b) Enumeration
c) HashMap
d) Hashtable
Answer: b
4. What is the name of data member of class Vector which is used to store number of elements in the vector?
a) length
b) elements
c) elementCount
d) capacity
Answer: c
5. Which of these methods is used to add elements in vector at specific location?
a) add()
b) set()
c) AddElement()
d) addElement()
Answer: d
Explanation: addElement() is used to add data in the vector, to obtain the data we use elementAt() and to first and last element we use firstElement() and lastElement() respectively.
6. What is the output of this program?
import java.util.*;
class vector {
public static void main(String args[]) {
Vector obj = new Vector(4,2);
obj.addElement(new Integer(3));
obj.addElement(new Integer(2));
obj.addElement(new Integer(5));
System.out.println(obj.elementAt(1));
}
}
a) 0
b) 3
c) 2
d) 5
b) 3
c) 2
d) 5
Answer: c
Explanation: obj.elementAt(1) returns the value stored at index 1, which is 2.
7. What is the output of this program?
import java.util.*;
class vector {
public static void main(String args[]) {
Vector obj = new Vector(4,2);
obj.addElement(new Integer(3));
obj.addElement(new Integer(2));
obj.addElement(new Integer(5));
System.out.println(obj.capacity());
}
}
a) 2
b) 3
c) 4
d) 6
b) 3
c) 4
d) 6
Answer: c
8. What is the output of this program?
import java.util.*;
class vector {
public static void main(String args[]) {
Vector obj = new Vector(4,2);
obj.addElement(new Integer(3));
obj.addElement(new Integer(2));
obj.addElement(new Integer(6));
obj.insertElementAt(new Integer(8), 2);
System.out.println(obj);
}
}
a) [3, 2, 6]
b) [3, 2, 8]
c) [3, 2, 6, 8]
d) [3, 2, 8, 6]
Answer: d
9. What is the output of this program?
import java.util.*;
class vector {
public static void main(String args[]) {
Vector obj = new Vector(4,2);
obj.addElement(new Integer(3));
obj.addElement(new Integer(2));
obj.addElement(new Integer(5));
obj.removeAll(obj);
System.out.println(obj.isEmpty());
}
}
a) 0
b) 1
c) true
d) false
b) 1
c) true
d) false
Answer: c
Explanation: firstly elements 3, 2, 5 are entered in the vector obj, but when obj.removeAll(obj); is executed all the elements are deleted and vector is empty, hence obj.isEmpty() returns true.
10. What is the output of this program?
import java.util.*;
class stack {
public static void main(String args[]) {
Stack obj = new Stack();
obj.push(new Integer(3));
obj.push(new Integer(2));
obj.pop();
obj.push(new Integer(5));
System.out.println(obj);
}
}
a) [3, 5]
b) [3, 2]
c) [3, 2, 5]
d) [3, 5, 2]
Answer: a
Explanation: push() and pop() are standard functions of the class stack, push() inserts in the stack and pop removes from the stack. 3 & 2 are inserted using push() the pop() is used which removes 2 from the stack then again push is used to insert 5 hence stack contains elements 3 & 5.