1.28.27.What happens when you attempt to compile and run the following code(shifting long type variable)?
public class Logic { static long sixteen = 0x0010; static public void main(String args[]){ long N = sixteen >> 4;
System.out.println( "N = " + N );
}
}