InterviewSolution
Saved Bookmarks
| 1. |
What is the default value of a bitset?(a) All bits are 0(b) All bits are 1(c) Leftmost bit is 0(d) Rightmost bit is 0 |
|
Answer» Correct choice is (a) All bits are 0 Explanation: By default, all the bits of a bitset variable is set to 0 i.e. the value of bitset variable is 0. |
|