Which of the following sorts is quickest when sorting the
following set: 1 2 3 5 4
1) Quick Sort
2) Bubble Sort
3) Merge Sort
Answer Posted / keerthana
Merge Sort.
| Is This Answer Correct ? | 6 Yes | 5 No |
Post New Answer View All Answers
Difference between linking and loading?
What are type modifiers in c?
Is it acceptable to declare/define a variable in a c header?
What is conio h in c?
please give me some tips for the placement in the TCS.
How to create struct variables?
All technical questions
Explain what are header files and explain what are its uses in c programming?
What are keywords c?
What does char * * argv mean in c?
Did c have any year 2000 problems?
write a program to concatenation the string using switch case?
The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder traversal is??? please help me on this
which of the following is not a character constant a) 'thank you' b) 'enter values of p, n ,r' c) '23.56E-o3' d) all of the above
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory