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
What is vector pair in c++?
What are the effects after calling the delete this operator ?
Is c++ the best programming language?
What are compilers in c++?
Snake Game: This is normal snake game which you can find in most of the mobiles. You can develop it in Java, C/C++, C# or what ever language you know.
Can we make copy constructor private in c++?
Can you write a function similar to printf()?
Inline parameters : What does the compiler do with the parameters of inline function, that can be evaluated in runtime ?
What are the advantages of early binding?
What is jump statement in C++?
Do you know what are static and dynamic type checking?
How do you find out if a linked-list has an end? (I.e. The list is not a cycle)
Why do we need pointers?
Do the names of parameters have to agree in the prototype, definition, and call to the function?
What is an accessor in c++?