Computer Science, asked by vinuthna29, 8 months ago

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);

System.out.print(obj);
}
}

Answers

Answered by anantpandey293
0

Answer:

What are you saying I don't understand your question

Answered by Haruhi22
0

Answer:

There is no parameterized constructor, so obj should not have any parameters .

It will give an error

Similar questions