How many bit combinations are there in a byte?
Answer Posted / panaitsdv
if number of bite values is n, and length of the byte is k.
that means n = 2, k = 8.
for n even => n^k
(2^8 = 256)
for n odd => n^k - 1
(2^7 - 1 = 128-1 = 127)
Is This Answer Correct ? | 5 Yes | 15 No |
Post New Answer View All Answers
Explain differences between new() and delete()?
What is the outcome of cout< a) 16 b) 17 c) 16.5
Write about the local class and mention its use?
What number of digits that can be accuratly stored in a float (based on the IEEE Standard 754)? a) 6 b) 38 c) An unlimited number
Explain the differences between list x; & list x();.
Is there finally in c++?
Can we change the basic meaning of an operator in c++?
What is a template in c++?
What is the full form of dos?
What are the advantages of using a pointer?
List the advantages of inheritance.
Which is better c++ or java?
Which bit wise operator is suitable for checking whether a particular bit is on or off?
When is the destructor called?
What is input operator in c++?