Question
Easy
........... Sorting compares two adjoining values and exchange them if they are not in proper order.
1
Selection
2
Heap
3
Bubble
4
Insertion
Question Details
Time to Solve: 12
Exam: HTET
Level/Paper: Level 3
Chapter:
Topic:
Correct Answer
Option C
Explanation
The correct option is (3): The sorting algorithm defined by the rule of comparing two adjoining values and exchanging them if they are not in the proper order is Bubble Sort. This algorithm repeatedly makes passes over the entire list. In each pass, it compares every pair of adjacent items, and if the element on the left is greater than the element on the right (for ascending order), they are…Read More
Similar Questions from HTET Exam - Level 3 - Year 2016
Question 1
Easy
Source :
HTET 2016
In SQL decimal data type, ........... indicates the maximum number of digits to the right of decimal point.
Question 2
Easy
Source :
HTET 2016
An application system analyst is concerned about all of the database at the ........... level.
Question 3
Easy
Source :
HTET 2016
........... generation of computers started to use assembly language.
Question 4
Easy
Source :
HTET 2016
A 2-D array A[4...7,-1...3] requires 2 bytes of storage space for each element. If the array is stored in row-major form having base address 100,…