0 answers
3
0 answers
4
0 answers
5
0 answers
6
In how many ways a team of 11 players be selected from 14 players when two of them can play as goalkeepers only?
0 answers
7
1 answer
8
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 answers
10
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 answers
12
2 answers
13
Single source shortest path problems can be implemented by greedy algorithms usingA. Singly linked listB. Min heapC. AVL treeD. All of the above
0 answers
15
1 answer
16
Suppose we are sorting an array of eight integers using heapsort, and we have just finished some heapify (either maxheapify or minheapify) operations. The array now looks...
1 answer
18
True or False :In randomized quicksort , each key is involved in the same number of comparisons.
1 answer
21
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...
1 answer
22
1 answer
23
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.
0 answers
24
Caption
1 answer
26
This screenshot is token from the book Ullman,How can following be a lexical error? because "elipseSize" should have a token recorded as an identifier.
1 answer
27
How are constants recogonized by the lexical analyser like interger 1234 floating point 1234.56789and what happens when we have -1234 and -1234.56789 how many token...