1.

 Write a Java expression for the following : ax5 + bx3 + c

Answer»

a.Math.pow(x,5) + b.Math.pow(x,3) +c;



Discussion

No Comment Found

Related InterviewSolutions