Recent posts tagged announcements

31
A computer handles several interrupt sources of which of the following are relevant for this question.Interrupt from CPU temperature sensor (raises interrupt if CPU tempe...
32
Here we are talking about the worst case time complexities of the given algorithms. Selection actually refers to selection algorithm and not selection sort.Selection$: O(...
33
Instruction execution time = CPU time + Memory acess timeMemory access time = Time for instruction fetch + Time for getting data Time for getting either data or instructi...
34
Yes. the same reason given above.
35
Oh sry I posted same link again I meant http://math.stackexchange.com/questions/470424/what-better-way-to-check-if-a-number-is-a-perfect-power
36
The reverse problem can be solved in polynomial time as $a^b$ requires at most $\log b$ recursive calls using the approach given below:pow(int a, int b) { if(b%2) return ...
37
I think by robust they mean not having problems that call by name(with arrays) and call by value results(same parameters passing twice) have...thanks
38
(a) is true. Ada supports in-out parameter passing, which is nothing other than call by value result (but Ada in GATE syllabus?)(b) Not true. (c) Most robust? I don't kno...