0 votes
0 answers
2
0 votes
0 answers
3
0 votes
0 answers
4
1 votes
0 answers
5
In how many ways a team of 11 players be selected from 14 players when two of them can play as goalkeepers only?
1 votes
0 answers
6
2 votes
1 answer
7
A. Total no. of trees that were there in the forest.B. Total no. of nodes in the forest.C. Total no. of nodes which have only right child.D. Return max element among all...
0 votes
0 answers
8
0 votes
0 answers
9
A 3-ary tree is a tree in which every internal node has exactly 3 children. Use induction to prove that the number of leaves in a 3-ary tree with n interval nodes is 2(n-...
0 votes
0 answers
10
0 votes
2 answers
11
Single source shortest path problems can be implemented by greedy algorithms usingA. Singly linked listB. Min heapC. AVL treeD. All of the above
1 votes
0 answers
13
0 votes
1 answer
14
True or False :In randomized quicksort , each key is involved in the same number of comparisons.
0 votes
1 answer
15
0 votes
0 answers
16
0 votes
1 answer
17
struct node* foo(struct node* a, struct node* b){ struct node* result, *rec; if(a==null) return b; else if(b==null) return a; else { rec=foo(a->next,b->next...
0 votes
1 answer
18
1 votes
1 answer
20
100 stations on a pure ALOHA network share a 1Mbps channel. If frames are 1000 bits long, find throughput if each station is sending 10 frames per second.