Hot questions in Programming and DS

11 votes
2 answers
2581
Let $A(1:8, -5:5, -10:5)$ be a three dimensional array. How many elements are there in the array $A$?$1200$$1408$$33$$1050$
0 votes
1 answer
2582
How much time will it take for deleting $i^{th}$ and a number $n(random)$ node from a heap?
0 votes
0 answers
2584
What is the recurrence relation / math expression for the number of binary min heaps possible with "n" elements on which "k" elements are repeated "t" times where t=2 to ...
0 votes
1 answer
2585
I think ans is C(index start with 0)
2 votes
1 answer
2587
Let A be an array with 5 rows and 10 columns. Assume base address is 100 and each element requires 4 bytes. Find the address of A [4,9], if array is stored in row major o...
1 votes
2 answers
2588
Plz Explain with a diagram .
5 votes
1 answer
2589
A balanced binary search tree of n nodes,the number of steps needed to find and remove the 9th largest element in the worst case?(Please mention the algorithm followed)
0 votes
1 answer
2590
The value of the postfix expression 10,8,4,+,-,5,12,3,/,+,4,+,* is_________________.i think ans is -26. correct me if i wrong.but given ans is +26 .
0 votes
1 answer
2591
What is meaning of Underline Text??
3 votes
1 answer
2592
Which of the following permutation can be obtained in the same order using a stack assuming thatinput is the sequence $5,6,7,8,9$ in that order?$7,8,9,5,6$$5,9,6,7,8$$7,8...
0 votes
0 answers
2593
2 votes
3 answers
2596
0 votes
1 answer
2597
What is meaning of underline ??
2 votes
1 answer
2600
Consider the functionint fun(x: integer) { If x>100 then fun=x-10; else fun=fun(fun(x+11)); }For the input $x=95$, the function will return$89$$90$$91$$92$