1 answer
1
What is the difference between struct node* head= NULL and struct node* head= (struct node*)NULL ?
3 answers
2
What is the difference when I write in program mynode * head; add_node(&head,10); add_node( struct node head, into value);To this mynode *head; add_node (head,10); add_...
4 answers
4
1 answer
5
we have to choose five chocolates,say, C1, C2, C3, C4 and C5. Now for C1 we can choose among three kinds of chocolates. Since the supply of chocolates is infinite, for C2...
3 answers
6
#IITD_2011 which is better merge sort or heap. sort ?
2 answers
7
The number of ways in which 6 rings can be worn on the four fingers of one hand is:a. 360b. 4^6c. 6C4d. 6^4
2 answers
8
Which of the following options is the closest in meaning to the word given below: PrimevalModernHistoricPrimitiveAntique
0 answers
9
Let (x′, y′) correspond to gcd(b, a mod b), i.e. gcd(b, a mod b) = x′ ·b + y′ · (a mod b). Then show that gcd(a, b) = y′ &midd...
2 answers
11
0 answers
13
A process spends $20%$ of its execution time waiting for completion of I/O operation. If there are $4$ processes in memory at once, then the probability of CPU time waste...
1 answer
18
1 answer
19
How is the correct ans c?
1 answer
21
Q If probability of frame reaching safely is 0.1 then mean number of transmissions of a frame to make it success is _____.How to solve this question?
2 answers
23
A digital circuit shown below has two $3$-bit input $A_2A_1A_0$ and $B_2B_1B_0$.To obtain output $Y=1$, the number of possible cases are ______.
2 answers
29
Which of the following symbol table implementations is best suited if access time is to minimum?(a) Linear list(b) Search table(c) Hash table(d) Self-organization list