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 different between auto and local static? why should we use local static?
Write a C program to get the desired output. 1 1 2 1 1 3 3 1 1 4 6 4 1 1 5 10 10 5 1 . . . 1 n..............n 1 Note: n is a positive integer entered by the user.
without using control structures and control structures find the max and min of given 2 nos
What is a const pointer in c?
What are the 5 organizational structures?
What is equivalent to ++i+++j?
Which of the following is not an infinite loop ? a.while(1){ .... } b.for(;;){ ... } c.x=0; do{ /*x unaltered within theloop*/ ... }while(x==0); d.# define TRUE 0 ... while(TRUE){ .... }
Can you define which header file to include at compile time?
void main() { //char ch; unsigned char ch; clrscr(); for(ch =0;ch<= 127; ch++) printf(" %c= %d \t ", ch, ch); } output?
Explain continue keyword in c
What are compound statements?
What is break in c?