Given: What is the result?()
A.s14 B.s16 C.s10 D.Compilation fails. E.An exception is thrown at runtime.
A. The JAR file is located at $JAVA_HOME/jre/classes/myLib.jar. B. The JAR file is located at $JAVA_HOME/jre/lib/ext/myLib.jar.. C. The JAR file is located at /foo/myLib.jar and a classpath environment variable is set that includes /foo/myLib.jar/Paper.class. D. The JAR file is located at /foo/myLib.jar and a classpath environment variable is set that includes /foo/myLib.jar. E. The JAR file is located at /foo/myLib.jar and the Book class is compiled using javac -cp /foo/myLib.jar/Paper Book.java. F. The JAR file is located at /foo/myLib.jar and the Book class is compiled using javac -d /foo/myLib.jar Book.java G. The JAR file is located at /foo/myLib.jar and the Book class is compiled using javac -classpath /foo/myLib.jar Book.java
Click the Exhibit button. Which three code fragments, added individually at line 29, produce the output 100?()
A.n = 100; B.i.setX( 100 ); C.o.getY().setX( 100 ); D.i = new Inner(); i.setX( 100 ); E.o.setY( i ); i = new Inner(); i.setX( 100 ); F.i = new Inner(); i.setX( 100 ); o.setY( i );