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 bss in c?
Why does notstrcat(string, "!");Work?
how to get starting address of a running C program
the number of measuring units from a arbitrary starting point in a record area or control block to some other point a) branching b) recording pointer c) none d) offset
How to write a code for random pick from 1-1000 numbers? The output should contain the 10 numbers from the range 1-1000 which should pick randomly, ie ,for each time we run the code we should get different outputs.
I need to take a sentence from input and sort the words alphabetically using the C programming language. Note: This is C not C++. qsort and strtok not allowed
12. Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV
Explain bitwise shift operators?
process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference
Write a program to give following output..... ********* **** **** *** *** ** ** * * ** ** *** *** **** **** *********
What is the OOPs concept?