Sorting is not possible by using which of the following
methods? (Insertion, Selection, Exchange, Deletion)

Answer Posted / vivek sharma

Sorting is not possible in Deletion. Using insertion we can
perform insertion sort, using selection we can perform
selection sort, using exchange we can perform the bubble sort
(and other similar sorting methods). But no sorting method can
be done just using deletion.

Is This Answer Correct ?    7 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

how i run the assembly language code

1606


write an algorithm in O(n) time for finding the kth smaalest element form an array of n elements , where n and k are entered by user

1593


Write a program to count the no. of occurrence of word in given string Ex- Ram is good boy. Ram is doing good job. Ram – 2 is – 2 good – 2 boy – 1 doing –1 job – 1

3612


what is rapid application development

1518


the conditional jump instruction in 8086 have a displacement of more than 1 byte.explain how would you tackle a situation in which it is required to branch,on some condition,to a location which is more than 120 bytes away.

2128


. Give the C language equivalents of the following a)Function returning an int pointer b)Function pointer returning an int pointer c)Function pointer returning an array of integers d)Array of function pointer returning an array of integers

1838


what will happend if i fire this command in linux " rm -r / "

1585


What is the actual procedure of charging synthetic oil if the machine is under positive refrigerant pressure.

1495


what is the working of tcp/ip?

1799


#include int fn(int v); main() { printf("%d\n",fn(7)); } int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; }

1735


What is the weight of a foot square block of bronze.

1503


what are the simlerities between macro and subroutine

1707


When to use Stub and Not So Stubby Area? 10. How to get the external routes without making area Not So Stubby?

1232


why c is called middle level langauge?

1828


what are differences b/w EIA 449 and EIA 530?

1924