多项选择题
A.java MainClass if run from the/apps directory
B.javacom.company.application.MainClass if run from the/apps directory
C.java-classpath/appscom.company.application.MainClass if run fro many directory
D.java-classpath.MainClass if run fromt he/apps/com/company/application directory
E.java-classpath/apps/com/company/application:.MainClass if run from the/apps directory
F.javacom.company.application.MainClassifrunfromthe/apps/com/company/application directory
多项选择题 A developer is creating a class Book that needs to access class Paper.The Paper class is deployed in a JARnamedmyLib.jar.Whichthree,taken independently,will allow the developer to use the Paper class while compiling the Book class?()
多项选择题 11.public class Commander{ 12.public static void main(String[]args){ 13.String myProp=/*insert code here*/ 14.System.out.println(myProp); 15.} 16.} and the command line: java-Dprop.custom=gobstopper Commander Which two,placed on line13,will produce the output gobstopper?()
单项选择题 package com.sun.sjcp; public class Commander{ public static void main(String[]args){ //more code here } } Assume that the class fileis located in /foo/com/sun/sjcp/,the current directory is/foo/,and that the classpath contains“.“(current directory). Which command line correctly runs Commander?()