UGC NET DECEMBER 2015 PAPER 2 SOLVED PART-2
Pages: 1 2 3 4 5 11. Consider the following program: #include<stdio.h> main() { int i, inp; float x, term=1, sum=0; scanf(“%d %f”,&inp, &x); for(i=1;i<=inp;i++) { term=term*x/i; sum=sum+term; } printf(“Result=%f\n”,sum); } The program computes the sum of which of the following series? (A) x+x2/2+x3/3+x4/4+… (B) x+x2/2!+x3/3!+x4/4!+… (C) 1+x2/2+x3/3+x4/4+… (D) 1+x2/2!+x3/3!+x4/4!+… […]