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
How do c++ struct differs from the c++ class?
What is a driver program?
What is the oldest programming language?
Which programming language should I learn first?
What is data hiding c++?
How can you quickly find the number of elements stored in a dynamic array? Why is it difficult to store linked list in an array?
What does the following do: for(;;) ; a) Illegal b) Loops forever c) Ignored by compiler...not illegal
Which field is used in c++?
write a c++ program to create class student having datamember name,Roll_no,age,and branch intilcization all the member using constructor print the all the details on the screen.
Can turbo c++ run c program?
Is c++ a dying language?
What is while loops?
What are the stages in the development cycle?
Explain the problem with overriding functions
How do you declare A pointer to a function which receives nothing and returns nothing