what are bps & baud rates? differentiate these two?
Answers were Sorted based on User's Feedback
Answer / ramkumar
number of individual bits per second is called bps.
number of symbols per second is called baud rate.
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / nakul
BPS- No. of bits per second
Baud Rate- No. of change in signal(waveform) per second
| Is This Answer Correct ? | 1 Yes | 2 No |
How the c program is executed?
What is the scope of static variables in c language?
Input any no. and print all the the numbers that comes before it like this for e.g input = 4 0 01 012 0123 01234 plz answer it 2day
what is self refrential structure
To what value are pointers initialized? 1) NULL 2) Newly allocated memory 3) No action is taken by the compiler to initialize pointers.
can u write a program in C, which does not use = (eqaul)or any arithmatic assignment(like -=,+=,*= etc) operator to swap to number?
What are the different types of constants?
What does s c mean on snapchat?
How many bytes are occupied by near, far and huge pointers (dos)?
void main() {int i=2; printf("%d%d%d",i,++i,i++); getch(); }
int i=~0; uint j=(uint)i; j++; printf(“%d”,j);
c program to subtract between two numbers without using '-' sign and subtract function.