Concept drill
logarithm
GATE CSE & IT · Calculus · 2006-2026
3
PYQs
67%
keyed
0
elite explanations
3
years appeared
Study anchor
Source-book anchor pending for this concept.
Practice action
Start latest PYQPYQs in this concept
All concepts →2026 PYQ
Consider the recursive functions represented by the following code segment: int bar(int n){ if (n == 1) return 0; else return 1 + bar(n/2); } int foo(int n){ if (n == 1) return 1;...
medium
2016 PYQ
In a process, the number of cycles to failure decreases exponentially with an increase in load. At a load of $$80$$ units, it takes $$100$$ cycles for failure. When the load is hal...
mediumanswer keybasic explanation
2006 PYQ
An array X of n distinct integers is interpreted as a complete binary tree. The index of the first element of the array is 0. If the root node is at level 0, the level of element X...
easyanswer key