MCQOPTIONS
Saved Bookmarks
| 1. |
What is the widest valid returnType for methodA in line 3? public class ReturnIt { returnType methodA(byte x, double y) /* Line 3 */ { return (long)x / y * 2; } } |
| A. | Int |
| B. | Byte |
| C. | Long |
| D. | Double |
| Answer» E. | |