'; (function() { var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true; dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js'; (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq); })();

PSCS 28-07-2020

1.b) 4:1
2.b)gain
3.a)11:14
4.a)greater than
5.b) B
6.d)would have doubled
7.a) The Times Of India
8.b)16,00,000
9.a) increased by 25%
10. c)Indain Express
11.b)16.67%
12.c)69%
13.c)1%
14.d)Rs.36,66
15.a)Rs.544.44 l
16..a)10:13
17.b)26.31
18.d)6.31
19.b)1992
20.d)125%

program:
from functools import reduce

fib= lambda n : reduce(lambda x, _:x+[x[-1] + x[-2]] ,range(n-2), [0,1] )

n=int (input())

f=fib(n)
for i in range(0,n):
    f[i]=f[i] * f[i]
print(f)

No comments:

Post a Comment