52. What happens when we attempt to compile and
run the following code?
1. public class Logic {
2. static long sixteen = 0x0010;
3. static public void main( String args[] ) {
4. long N = sixteen >> 4;
5. System.out.println( "N = " + N );
6. }
7. }
Select 1 correct answer:
A. The compiler will object to line 4 combining a long with an int.
B. The program will compile and run, producing the output "N = 0".
C. The program will compile and run, producing the output "N = 1".
D. A runtime exception will be thrown.