14. long test( int x, float y) {
15.
16. }
which two of the following lines, inserted independently, at line 15 would not compile?
(Choose two.)
A. return x;
B. return (long) x / y;
C. return (long) y;
D. return (int) 3.14d;
E. return ( y / x );
F. return x / 7;