java statement to print 3.5 raised to power 4.0 :-
a.)X1= Math.pow(4,3.5); System.out.println(X1)
b.)X1= Math.pow(3.5,4); System.out.println(X1)
c.)X1=math.pow(3.5,4); System.out.println(X1)
d.)all of the above
Answers
Answered by
1
Answer:
java statement to print 3.5 raised to power 4.0
answer is d) all of the above
Answered by
91
Java statement to print 3.5 raised to power 4.0 :-
- a.) X1= Math.pow(4,3.5); a.)X1= Math.pow(4,3.5); System.out.println(X1)
- b.) X1= Math.pow(3.5,4); System.out.println(X1)
- c.) X1=math.pow(3.5,4); System.out.println(X1)
- d.) all of the above
Similar questions