1 answer
1
Can any one please explain , Why the compile time and load time address-binding generate identical logical and physical address but execution time binding generate differ...
5 answers
2
Given 2 sorted arrays each of n-elements and distinct. How much time it will take to find middle element of union array?(a) O(1)(b) O(log n)(c) O(n)(d) None of these
8 answers
3
6 answers
4
For merging two sorted lists of sizes $m$ and $n$ into a sorted list of size $m+n$, we require comparisons of$O(m)$$O(n)$$O(m+n)$$O(\log m + \log n)$