0 votes
0 answers
1
#include <stdio.h>int main(void) { int i=10; printf(" %d %d %d",i==10,i=40,i>15 );} Conceptsundefined behaviorfloating point representation
3 votes
1 answer
3
Explain Prims AlgorithmAnalysis Of Time ComplexityHow does $\mathcal{O}(VlogV + ElogV)=\mathcal{O}(ElogV)$
1 votes
0 answers
6
$T(n)= \begin{Bmatrix} 2^{n}T(n-1)+c& n>0\\ 1 & n=0 \end{Bmatrix}$
5 votes
3 answers
14
0 votes
0 answers
15
Assume that a merge sort algorithm in worst case takes30s for an input of size 64. Which of the following closely approximate maximum input size of a problem that can be ...
2 votes
2 answers
16
Suppose the cache memory is 100 times faster than main memory and it is used 50% of thetime. The performance is gained by introducing this cache is __________.
0 votes
0 answers
20
When compiler finds there is a System Call then what are the activitites taking place ?Activities involved in Mode shifting process from user to kernal mode and back.