Highest voted questions in Programming and DS

0 votes
1 answer
4921
0 votes
2 answers
4922
payload value should be divided by here they take 505 it should be 504 so it become 504/8=63??
0 votes
2 answers
4924
A 5-ary tree is a tree in which every internal node has 3 children.The number of leaf nodes in such a tree with 10 internal nodes is______
0 votes
1 answer
4925
Given a head pointer what is the time complexity:1. To insert the element at front2.To delete the element at front3.To insert the element at end4.To delete the element at...
0 votes
0 answers
4926
0 votes
2 answers
4927
a=4 and b=3printf("%d",a+++b);output.??My doubt is that we will read from left as a++ or as ++b.
0 votes
0 answers
4928
Can anyone clarify hy they are getting 269 and and I am getting 258?
0 votes
0 answers
4929
0 votes
0 answers
4930
0 votes
1 answer
4931
0 votes
0 answers
4932
how much time take, if Insert/delete at end in linked list?a) when last element is unknown.b) when last element is known
0 votes
0 answers
4933
0 votes
0 answers
4934
0 votes
1 answer
4935
0 votes
0 answers
4936
Doubt: dequeue really deletes the element or just moves the pointer? I'm not getting the answer.
0 votes
1 answer
4937
​​15, 20, 25, 3015, 20, 15, 2015, 15, 15, 15None of these
0 votes
0 answers
4939
The number of ways in which the numbers 1, 2, 3, 4, 5 can be inserted into binary heap. Such that resulted binary heap is max heap ________.Made easy says that there are ...
0 votes
1 answer
4940
int CALL(int K){if(K<3)return 1;else CALL(K-1) + CALL(K-3) +1;}value returned by CALL(CALL(5))is.............