MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of this program? class Output { public static void main(String args[]) { double x = 2.0; double y = 3.0; double z = Math.pow( x, y ); System.out.print(z); } } |
| A. | 2.0 |
| B. | 4.0 |
| C. | 8.0 |
| D. | 9.0 |
| Answer» D. 9.0 | |