MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of this program? class Output { public static void main(String args[]) { double x = 3.1; double y = 4.5; double z = Math.max( x, y ); System.out.print(z); } } |
| A. | True |
| B. | False |
| C. | 3.1 |
| D. | 4.5 |
| Answer» E. | |