网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

JAVA程序包括源代码(.java文件)、()、由归档工具jar生成的.jar文件、对象状态序列化.ser文件。


参考答案

更多 “JAVA程序包括源代码(.java文件)、()、由归档工具jar生成的.jar文件、对象状态序列化.ser文件。” 相关考题
考题 Aclassgames.cards.PokeriscorrectlydefinedinthejarfilePoker.jar.AuserwantstoexecutethemainmethodofPokeronaUNIXsystemusingthecommand:javagames.cards.PokerWhatallowstheusertodothis?() A.putPoker.jarindirectory/stuff/java,andsettheCLASSPATHtoinclude/stuff/javaB.putPoker.jarindirectory/stuff/java,andsettheCLASSPATHtoinclude/stuff/java/*.jarC.PutPoker.jarindirectory/stuff/java,andsettheCLASSPATHtoinclude/stuff/java/Poker.jarD.putPoker.jarindirectory/stuff/java/games/cards,andsettheCLASSPATHtoinclude/stuff/javaE.putPoker.jarindirectory/stuff/java/games/cards,andsettheCLASSPATHtoinclude/stuff/java/*.jarF.putPoker.jarindirectory/stuff/java/games/cards,andsettheCLASSPATHtoinclude/stuff/java/Poker.jar

考题 以下不属于Java Application应用程序编写和执行步骤的是 ( )A.编写源代码B.编写HTML文件C.编译源代码D.解释执行

考题 编写和运行java applet程序与编写和运行java application程序不同的步骤是( )。A.编写源代码B.编写html文件调用该小程序,以.html为扩展名存入相同文件夹C.编译过程D.解释执行

考题 J2SDK命令的基本命令idb是指( )。A.Java语言的编译器B.Java语言的解释器C.Java程序的调试器D.Java类文件归档命令

考题 Java语言API文档是( )。A.Java归档工具B.Java状态序列化文件C.Java源代码D.编程工具

考题 Java语言的API文档是( )。A.Java归档工具B.Java状态序列化文件C.Java源代码D.编程工具

考题 以下不属于Java程序结构文件的是( )。A.asp文件B.java文件C.class文件D.jar文件

考题 下列用于Java解析类文件的命令是( )。A.javaB.javacC.javapD.jar

考题 用Java开发工具JDK建立小应用程序时,嵌入HTML源代码的是()A、Java源代码B、经Javac编译生成的文件C、经Java解释生成的文件D、经Javap反汇编生成的文件

考题 Java虚拟机指的是()。A、由Java语言操作的家用设备(通常是一个漂亮的小烤箱)B、运行Java程序所需的硬件设备C、Java源代码的编译器D、Java字节代码的解释程序

考题 在JAVA编程中,Java编译器会将Java源代码程序转换为()。A、字节码B、可执行代码C、机器代码D、以上所有选项都不正确

考题 运行jar文件中class文件需要在java命令后面加的参数为()。A、-cpB、-gC、-dD、-verbose

考题 Java Application应用程序的编写和执行分3步进行:编写源代码、编译源代码、()

考题 编译Java程序file.java后生成的程序是()。A、file.htmlB、File.classC、file.classD、file.jar

考题 JDK工具javadoc的作用是哪项?()A、生成Java文档B、编译Java源文件C、执行Java类文件D、测试Java代码

考题 Sun公司提供了一套构建Java程序的开发工具,称为()。A、JDKB、JREC、JVMD、JAR

考题 A class games.cards.Poker is correctly defined in the jar file Poker.jar. A user wants to execute the main method of Poker on a UNIX system using the command: java games.cards.Poker What allows the user to do this?()A、put Poker.jar in directory /stuff/java,and set the CLASSPATH to include /stuff/javaB、put Poker.jar in directory /stuff/java,and set the CLASSPATH to include /stuff/java/*.jarC、Put Poker.jar in directory /stuff/java,and set the CLASSPATH to include /stuff/java/Poker.jarD、put Poker.jar in directory /stuff/java/games/cards,and set the CLASSPATH to include /stuff/javaE、put Poker.jar in directory /stuff/java/games/cards,and set the CLASSPATH to include /stuff/java/*.jarF、put Poker.jar in directory /stuff/java/games/cards,and set the CLASSPATH to include /stuff/java/Poker.jar

考题 A developer is creating a class Book, that needs to access class Paper. The Paper class is deployed in a JAR named myLib.jar.  Which three, taken independently, will allow the developer to use the Paper class while compiling the Bookclass?()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 - classpath /foo/myLib.jar Book.java

考题 单选题Java虚拟机指的是()。A 由Java语言操作的家用设备(通常是一个漂亮的小烤箱)B 运行Java程序所需的硬件设备C Java源代码的编译器D Java字节代码的解释程序

考题 单选题用Java开发工具JDK建立小应用程序时,嵌入HTML源代码的是()A Java源代码B 经Javac编译生成的文件C 经Java解释生成的文件D 经Javap反汇编生成的文件

考题 单选题在JAVA编程中,Java编译器会将Java源代码程序转换为()。A 字节码B 可执行代码C 机器代码D 以上所有选项都不正确

考题 单选题编译Java程序file.java后生成的程序是()。A file.htmlB File.classC file.classD file.jar

考题 多选题以下关于JVM的叙述,哪项正确?()AJVM运行于操作系统之上,它依赖于操作系统BJVM运行于操作系统之上,它与操作系统无关CJVM支持Java程序运行,它能够直接运行Java字节码文件DJVM支持Java程序运行,它能够直接运行Java源代码文件

考题 单选题JDK工具javadoc的作用是哪项?()A 生成Java文档B 编译Java源文件C 执行Java类文件D 测试Java代码

考题 单选题A class games.cards.Poker is correctly defined in the jar file Poker.jar. A user wants to execute the main method of Poker on a UNIX system using the command:java games.cards. Poker What allows the user to do this?()A put Poker.jar in directory /stuff/java, and set the CLASSPATH to include /stuff/javaB put Poker.jar in directory /stuff/java, and set the CLASSPATH to include /stuff/java/*.jarC put Poker.jar in directory /stuff/java, and set the CLASSPATH to include /stuff/java/Poker.jarD put Poker.jar in directory /stuff/java/games/cards, and set the CLASSPATH to include /stuff/java

考题 单选题A class games.cards.Poker is correctly defined in the jar file Poker.jar.  A user wants to execute the main method of Poker on a UNIX system using the command:  java games.cards.Poker  What allows the user to do this?()A  put Poker.jar in directory /stuff/java, and set the CLASSPATH to include /stuff/javaB  put Poker.jar in directory /stuff/java, and set the CLASSPATH to include /stuff/java/*.jarC  Put Poker.jar in directory /stuff/java, and set the CLASSPATH to include /stuff/java/Poker.jarD  put Poker.jar in directory /stuff/java/games/cards, and set the CLASSPATH to include /stuff/javaE  put Poker.jar in directory /stuff/java/games/cards, and set the CLASSPATH to include /stuffijava/*.jarF  put Poker.jar in directory /stuff/java/games/cards, and set the CLASSPATH to include /stuff/java/Poker.jar

考题 填空题JAVA程序包括源代码(.java文件)、()、由归档工具jar生成的.jar文件、对象状态序列化.ser文件。