1. URL newU = new URL( "aURL" ) ;
2. RandomAccessFile raf = new RandomAccessFile( newU );
A. The compiler objects to the constructor in line 2.
B. The compiler objects to the constructor in line 1.
C. The code compiles but gets a security exception when it runs.
D. The code compiles and the RandomAccessFile is created when it runs.