+ 7
What is bits and byte?
difference btw bits and byte
25 Answers
+ 17
A byte is a set of 8 bit.
+ 7
A bit is a binary digit that can either be a 1 or 0
+ 7
a bit is like a switch which can only be 1(on) or 0(off) (it's actually higher current and lower current)
and a byte is a set of 8 bits, from which computers can understand what to do
+ 7
bit = finger
byte = hand
😁
+ 6
A byte is a unit of storing data in computer and bit is also a unit of that ,
1Byte = 8 bits
+ 5
8 bits=1byte
4bits=1nibble
+ 4
bit is binary number consist of 0 or 1 ...and byte is combination of 8 bits .
+ 3
8 bits = 1 byte
+ 3
bit and byte both are computer storahe units bit os smaller byte is bogger
+ 3
A bit is a binary digit, the smallest increment of data on a computer
The byte is a unit of digital information that most commonly consists of eight bits, representing a binary number.
+ 1
#include<iostream.h>
#include<conio.h>
void main()
{
char c,p;
cout<<"ente the op that u wont"<<endl;
cout<<"a for add,s for sub,m for multi and d for divition"<<endl;
cin>>c;
switch(c){
case'm':
{
int x=1,n1,n2,m=1;
while(n1!=0){
cout<<"ente 2 numbes"<<endl;
cin>>n1>>n2;
if(n1!=0)
m=n1*n2;
else
x=0;
cout<<m<<endl;}}
case's':{
int x=1,n1,n2,m=1;
while(x!=0){
cout<<"ente 2 numbes"<<endl;
cin>>n1>>n2;
if(n1!=0)
m=n1-n2;
else
x=0;
cout<<m<<endl;}}
case'a':{
int x=1,n1,n2,m=1;
while(x!=0){
cout<<"ente 2 numbes"<<endl;
cin>>n1>>n2;
if(n1!=0)
m=n1+n2;
else
x=0;
cout<<m<<endl;}}
case'd':{
int x=1,n1,n2,m=1;
while(x!=0){
cout<<"ente 2 numbes"<<endl;
cin>>n1>>n2;
if(n1!=0)
m=n1/n2;
else
x=0;
cout<<m<<endl;}}}
getch();
}
+ 1
8 bits=1byte
4bits=1nibble
https://code.sololearn.com/WAP6C8D26jD4/?ref=app
+ 1
1bit=8 bytes
+ 1
A byte is 8
And a bit is a binary digit which is either 1 or 0, on or off, true or false
0
A bit is smaller than a byte. A byte is 8 bits of memory. A bit is 1 space of memory.
0
bits is a smallest storage in computer
as it stores only as 0 or 1
for eg. in a chip electric charge =0/1.
whereas group of 8 bit makes 1 bytes for eg . one byte can store one character as ( 'A' etc..)
0
A bit is the smallest unit of information and a byte is 8 bits put together. Look up binary and machine language to learn more about that.
0
Sandip Wagh Please write your question in a new thread (and remember than you cannot post challenges in Q/A section)
Surajit Das Yes and 8 bit = 1GigaByte 😁