Laboratory Assignment For Tuesday of Week of 4/10/04 1) Given a word, find if it starts and ends with a vowel. Your method should take a String as input parameter. It should print the result (yes/no). The return type should be void. 2) Write a loop based program which prints the first n terms of the following series S(a,d,n) = F(n) + A(n) where F(n) : nth term in the Fibonacci series (i.e., 1,1,2,3,5,8,13,...) A(n) : n-th term in the arithmetic series (i.e., a+(n-1)*d) Your method should have n, a, and d as the input parameters and output type should be void. 3) Write a recursive program, Rep(n,m), which take n and m and prints the base-m representation of n. Assume 2 <= m <= 10.