MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of this program?public class Result { public static void main(String args[]) { double num = 4.13; int p = (int) Math.toDegrees(num); System.out.print(p); } } |
| A. | 236 |
| B. | 4.13 |
| C. | 230 |
| D. | 200 |
| E. | None of these |
| Answer» B. 4.13 | |