Concept drill
exponential-function
GATE CSE & IT · Calculus · 2003-2016
2
PYQs
100%
keyed
0
elite explanations
2
years appeared
Study anchor
Source-book anchor pending for this concept.
Practice action
Start latest PYQPYQs in this concept
All concepts →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
2003 PYQ
Consider the following C function. float f,(float x, int y) { float p, s; int i; for (s=1,p=1,i=1; i < y; i++) { p *= x/i; s+=p; } return s; } For large values of y, the return val...
mediumanswer key