41.
What will be the output of the following Java code?
import java.util.*;
class Bitset
{
    public static void main(String args[])
    {
        BitSet obj1 = new BitSet(5);
        BitSet obj2 = new BitSet(10);
        for (int i = 0; i < 5; ++i)
            obj1.set(i);
        for (int i = 3; i < 13; ++i)
            obj2.set(i);
        obj1.and(obj2);
        System.out.print(obj1);
    }
}

42.
What are the use of front and rear pointers in CircularQueue implementation?

Read More Section(Collections Framework in java)

Each Section contains maximum 100 MCQs question on Collections Framework in java. To get more questions visit other sections.