Sorting is not possible by using which of the following methods?
(a) Insertion (b) Selection (c) Exchange (d) Deletion
Answer Posted / rohit sah
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 ? | 0 Yes | 0 No |
Post New Answer View All Answers
For the following COBOL code, draw the Binary tree? 01 STUDENT_REC. 02 NAME. 03 FIRST_NAME PIC X(10). 03 LAST_NAME PIC X(10). 02 YEAR_OF_STUDY. 03 FIRST_SEM PIC XX. 03 SECOND_SEM PIC XX.
What is sorting in math?
What the principle of quick sort and its complexity?
Is a list an array?
In what areas do data structures are applied?
What is a subtree in data structures?
What happens if we try to insert duplicate key in hashmap?
What are the applications of graph data structure?
What method removes the value from the top of a stack?
What sorting algorithm does arrays sort use?
Define linear probing?
Is priority queue sorted?
Define parent node?
Can array store heterogeneous data?
Which sorting algorithms are in place?