Most viewed questions in Programming and DS

3 votes
1 answer
123
In C programming language x – = y + 1 ; means(1)x= x-y+1(2)x=-x-y-1(3)x=-x+y+1(4)x= x-y-1
2 votes
1 answer
124
The time required to search an element in a linked list of length n is$O(\log_2 n)$$O(n)$$O(1)$$O(n^2)$
48 votes
4 answers
126
2 votes
3 answers
130
The maximum number of comparisons needed to sort 9 items using radix sort is (assume each item is 5 digit octal number):4572360450
42 votes
5 answers
133
2 votes
3 answers
137
The minimum number of temporary variables needed to swap the contents of two variables is:(a) 1     (b) 2(c) 3     (d) 0
33 votes
10 answers
139
50 votes
9 answers
140
Consider the following rooted tree with the vertex labeled $P$ as the root:The order in which the nodes are visited during an in-order traversal of the tree is$\text{SQPT...