InterviewSolution
Saved Bookmarks
| 1. |
How many ways are there for constructing a bitset?(a) 1(b) 2(c) 3(d) 4This question was posed to me by my school principal while I was bunking the class.My question is from Bitset topic in division Class Hierarchies, Library & Containers of C++ |
|
Answer» RIGHT choice is (c) 3 For EXPLANATION: There are three ways of constructing a bitset. Direct CONSTRUCTION, using integer number and using binary string. |
|