How many constructors are there of Vector class in Java Collections framework?
C
Correct answer
Explanation
This is the correct answer. There are 4 constructors of Vector class, viz. Vector(): creates a default vector with initial capacity 10; Vector(c : collections): creates a vector from existing collection; Vector(initialcapacity int): creates a vector with specified initial capacity; and Vector(initialcapacity int,increment int): creates a vector with specified initial capacity and increment. So, this is the correct answer.