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. | |