3 answers
3
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_...
2 answers
4
Under which of the following conditions, the size of an one-dimensional array need to be specified ?a) when initialization is a part of definitionb) when it is a declarat...
1 answer
6
What are the key differences among iits, top 4nits(W,T,S,C) and iiits(iiith,iiitb and iiitd only) w.r.t Masters (Mtech/MS) in CSE considering these aspects(feel free to m...
1 answer
7
the worst case time complexity of quicksort for an elements when the median is selected as the pivota. o(n^2)b.o(n)c.o(nlogn)d.o(logn)
20 answers
12
2 answers
13
What is pipelining? Whats the need? Whats the funda behind it? Does it make the processor faster?
8 answers
14
The number of elements that can be sorted in $\Theta(\log n)$ time using heap sort is$\Theta(1)$$\Theta(\sqrt{\log} n)$$\Theta(\frac{\log n}{\log \log n})$$\Theta(\log n)...
3 answers
15
There are exactly ____ different finite automata with three states $x$, $y$ and $z$ over the alphabet $\{a,b\}$ where $x$ is always the start state$64$$256$$1024$$5832$
1 answer
16
Have you heard of ethernet?” I said “Yes!”. Then I was asked “Can we lay an ethernet LAN between Delhi and Bangalore?
2 answers
17
Which IIT's take admission through written Test and Interviews,Upto what Rank They call and Eg Major Subjects To Focus and Type of Questions asked.
2 answers
18
#IITD_2011If we are give a sorted array and we have to find two elements which sum to a number x.
6 answers
19
Which one of the following protocols is NOT used to resolve one form of address to another one?$\textsf{DNS}$$\textsf{ARP}$$\textsf{DHCP}$$\textsf{RARP}$
4 answers
23
2 answers
25
how this relation (m+r+1)<=2^r comes??please explain.