what are bps & baud rates? differentiate these two?
Answer Posted / 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 |
Post New Answer View All Answers
What is || operator and how does it function in a program?
List some of the static data structures in C?
Read the following data in two different files File A: aaaaaaaadddddddd bbbbbbbbeeeeeeee ccccccccffffffff File B: 11111111 22222222 33333333 By using the above files print the following output or write it in the Other file as follows aaaaaaaa11111111dddddddd bbbbbbbb22222222eeeeeeee cccccccc33333333ffffffffffff
What is scope of variable in c?
What does it mean when a pointer is used in an if statement?
can any one provide me the notes of data structure for ignou cs-62 paper
regarding pointers concept
What are global variables and how do you declare them?
Explain the advantages of using macro in c language?
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
What is getch() function?
What is difference between class and structure?
int i=10; printf("%d %d %d", i, i=20, i);
Which header file is essential for using strcmp function?
What is nested structure in c?