October 7, 2023Data-StructuresQuestion 21 The preorder traversal of a binary search tree is 15, 10, 12, 11, 20, 18, 16, 19. Which one of the following is the […]
October 7, 2023HashingQuestion 2 Consider a double hashing scheme in which the primary hash function is h1(k) = k mod 23, and the secondary hash function is h2(k) […]
October 7, 2023SortingQuestion 115 Heap sort may be considered as A Insertion sort done on a heap data structure instead of a list. B Selection sort done on […]
October 7, 2023ArraysQuestion 1 Consider the following C program. #include int main () { int a [4] [5] = {{1, 2, 3, 4, 5}, {6, 7, 8, 9, […]