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


Please Help Members By Posting Answers For Below Questions

Explain differences between new() and delete()?

811


What is the outcome of cout< a) 16 b) 17 c) 16.5

761


Write about the local class and mention its use?

820


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

994


Explain the differences between list x; & list x();.

751


Is there finally in c++?

810


Can we change the basic meaning of an operator in c++?

850


What is a template in c++?

1290


What is the full form of dos?

756


What are the advantages of using a pointer?

798


List the advantages of inheritance.

859


Which is better c++ or java?

741


Which bit wise operator is suitable for checking whether a particular bit is on or off?

787


When is the destructor called?

768


What is input operator in c++?

770