1.

What is the output of this program?import java.util.*; public class Bitset_Exmple { public static void main(String args[]) { BitSet object = new BitSet(10); for (int k = 0; k < 6; ++k) object.set(k); System.out.print(object.get(6)); } }

A. 6
B. 10
C. True
D. False
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs