What is the output of this program ...?
import java.util.*;
class Bitset
{
public static void main(String args[])
{
BitSet obj = new BitSet(5);
for (int i = 0; i < 5; ++i)
obj.set(i);
obj.clear(2)...
See more
Download the Study24x7 App, so you can connect and collaborate.