How many bit combinations are there in a byte?
Answer Posted / santosh shah
256 combinations.Byte contains the 8 Bits and bit contains
either the value 0 or 1.i.e.(2 raise to power 8 minus
1).The maximum number of value represented with a byte is 8
bits is 255 but 0 should also be considered as well as 1,
2, 3, ..., 255. So there are total
256 combinations.
| Is This Answer Correct ? | 15 Yes | 6 No |
Post New Answer View All Answers
Which software is used to run c++ program?
What is a dll entry point?
Is c++ a programming language?
Define a constructor - what it is and how it might be called (2 methods)?
Is there finally in c++?
Explain public, protected, private in c++?
Which is the best c++ compiler?
What is c++ map?
How long does it take to get good at leetcode?
What is purpose of new operator?
Can I create my own functions in c++?
What are destructors?
What is the difference between ++ count and count ++?
Define pure virtual function?
Explain the virtual inheritance in c++.