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 |
What is the purpose of type declarations?
A banker has a seif with a cipher. Not to forget the cipher, he wants to write it coded as following: each digit to be replaced with the difference of 9 with the current digit. The banker chose a cipher. Decipher it knowing the cipher starts with a digit different than 9. I need to write a program that takes the cipher from the keyboard and prints the new cipher. I thought of the following: Take the input from the keyboard and put it into a string or an array. Go through the object with a for and for each digit other than the first, substract it from 9 and add it to another variable. Print the new variable. Theoretically I thought of it but I don't know much C. Could you give me any kind of hint, whether I am on the right track or not?
How can I manipulate individual bits?
What is data structure in c language?
What is period operator in c?
provide an example of the Group by clause, when would you use this clause
program to find which character is occured more times in a string and how many times it has occured? for example in the sentence "i love india" the output should be i & 3.
What are the types of type qualifiers in c?
main() { static char *s[]={"black","white","yellow","voilet"}; char **ptr[]={s+3,s+2,s+1,s}, ***p; p=ptr; **++p; printf("%s",*--*++p+3); }
What is type qualifiers?
Program to find the sum of digits of a given number until the sum becomes a single digit
What is meaning of tree