What is the widest valid returnType for methodA in line 3?

Loading

Choose the correct option.

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