1.  Write a program to evaluate the polynomial shown here:  
  2.                   3x3 - 5x2 + 6 for x = 2.55
  3. To round off an integer i to the next largest even multiple of another integer j, the following formula can be used:   Next_multiple = i + j - i % j
  4. Write a program to input the radius of a sphere and to calculate the volume of the sphere.(Volume = 4/3*pi*radius3)
  5. Write a program to input your mid term marks of a subject marked out of 30 and the final exam marks out of 100. Calculate and print the final result. Final Result = Mid Term + 70% of Final Mark. 
   

                                Answer click here.