How many bit combinations are there in a byte?

Answers were Sorted based on User's Feedback



How many bit combinations are there in a byte?..

Answer / bari

2 raise to no. of byte ie. for three byte ,8 bit combination

Is This Answer Correct ?    4 Yes 16 No

How many bit combinations are there in a byte?..

Answer / prakash

255 0nly

Is This Answer Correct ?    4 Yes 23 No

How many bit combinations are there in a byte?..

Answer / anita sachdeva

Byte contains the 8 Bits and bit contains either the value
0 or 1. there are only two states there will be 255
combinations i.e.(2 raise to power 8 minus 1)
combinations .

Is This Answer Correct ?    18 Yes 46 No

Post New Answer

More C++ General Interview Questions

i want to know how to copy arrary without using any method or function. I have tried the below using System; class e4 { static void Main(string[] args) { int a,b; int[ ] m= new int[5]; int[ ] n= new int[5]; for(a=0;a<=4;a++) { Console.WriteLine("enter any value"); m[a]=Convert.ToInt32(Console.ReadLine()); m[a]=n[a]; } for(b=0;b<=4;b++) { Console.WriteLine(n[b]); } } } but it will give wrong result can anyone solve this problem

1 Answers   Reliance,


What are the various operations performed on stack?

0 Answers  


In a class, there is a reference or pointer of an object of another class embedded, and the memory is either allocated or assigned to the new object created for this class. In the constructor, parameters are passed to initialize the data members and the embedded object reference to get inialized. What measures or design change should be advised for proper destruction and avioding memory leaks, getting pointers dangling for the embedded object memory allocation? Please suggest.

5 Answers   GE,


Explain the pure virtual functions?

0 Answers  


What are static variables?

0 Answers  






How a macro differs from a template?

0 Answers  


write a program to add two numbers without using an arithmetic operator.

1 Answers   NIIT,


What do you mean by function pointer?

0 Answers  


List the features of oops in c++?

0 Answers  


Difference between linked list and array?

3 Answers  


What is helper in c++?

0 Answers  


What is c++ manipulator?

0 Answers  


Categories