Laboratory Assignment For Wednesday of Week of 4-10-04 1) Tax on the yearly income is calculated as per following rule. Income upto 1,00,000 rupess 10% tax Additional income above 1,00,000 rupess and upto 2,00,000 15% tax Additional income above 2,00,000 25% tax example: Input=216000 Income in bracket 0 to 100,000 is 100,000 so tax 10000 Income in bracket 100,000 to 200,000 is 100,000 so tax is 15000 Income in bracket 200,000-plus is 16,000 so tax is 4000 So total tax is 29,000. Your method should have int "income" as the input parameter and it should print the tax. The output type should be void. 2) Write a loop based method which prints the first n terms of the following series S(n) = F(n) + G(n) where F(n) : n-th term in the Fibonacci series (i.e., 1,1,2,3,5,8,13,...) G(n) : n-th term in the Geometric Series (i.e., a*r^n) The method should take n, 'a' and 'r' as input parameters. The return type will be void. 3) Write a recursive program RepFrac(n) which prints the value of the function f(n) = 1/(1 + 1/(2 + 1/ (3.....n-2 + 1/(n-1 + 1/n)))))...