单选题假设在目录myprj/src/school中有Java源文件Student.java,编译后的类文件出现在目录myprj/classes/school中,应该使用下列哪一个命令来执行这个类?()A cd myprj/src  java ../classes school.StudentB cd myprj/src/school  java –cp ../classes school.StudentC cd myprj/src/school  java –cp ../../classes school

题目
单选题
假设在目录myprj/src/school中有Java源文件Student.java,编译后的类文件出现在目录myprj/classes/school中,应该使用下列哪一个命令来执行这个类?()
A

cd myprj/src  java ../classes school.Student

B

cd myprj/src/school  java –cp ../classes school.Student

C

cd myprj/src/school  java –cp ../../classes school.Student

D

cd myprj/src  java –cd ../classes school.Student


相似考题
更多“单选题假设在目录myprj/src/school中有Java源文件Student.java,编译后的类文件出现在目录myprj/classes/school中,应该使用下列哪一个命令来执行这个类?()A cd myprj/src  java ../classes school.StudentB cd myprj/src/school  java –cp ../classes school.StudentC cd myprj/src/school  java –cp ../../classes school”相关问题
  • 第1题:

    假设在目录myprj/src/school中有Java源文件Student.java,编译后的类文件出现在目录myprj/classes/school中,应该使用下列哪一个命令来执行这个类?()  

    • A、cd myprj/src  java ../classes school.Student
    • B、cd myprj/src/school  java –cp ../classes school.Student
    • C、cd myprj/src/school  java –cp ../../classes school.Student
    • D、cd myprj/src  java –cd ../classes school.Student

    正确答案:C

  • 第2题:

    假设已编写好了类Class1:packagemypackage;publicclassClass1{……}它存在Class1.java文件中。现在main方法所在的源程序MainPro.java如下:importmypackage;……假设操作系统中的CLASSPATH环境变量已被设成"c:/java/lib/classes.zip;.;",而main方法所在的源程序MainPro.java存在目录c:/mydir中(当前工作目录为c:/mydir),那么Class1.class文件应存放在那个目录中呢?


    正确答案:c: /mydir/ mypackage

  • 第3题:

    在设计Web项目的目录结构时,src目录一般放()文件。

    • A、html
    • B、jsp
    • C、web.xml
    • D、Java源文件

    正确答案:D

  • 第4题:

    JDK工具javadoc的作用是哪项?()    

    • A、生成Java文档
    • B、编译Java源文件
    • C、执行Java类文件
    • D、测试Java代码

    正确答案:A

  • 第5题:

    You completed your Java procedure for your external Java function activity, and you now want todeploy this to your server. What would you do to deploy the Java procedure?()

    • A、take the Java sources (.java) files and include them in your $APPL_TOP
    • B、take the Java sources (.java) files and include them in your CLASSPATH
    • C、take the Java classes (.class) files and include them in your $APPL_TOP
    • D、take the Java classes (.class) files and include them in your CLASSPATH

    正确答案:D

  • 第6题:

    单选题
    若使当前编译的Java文件所引用的类文件不在当前目录下,需要在Java命令后面添加参数()。
    A

    -cp

    B

    -g

    C

    -classpath

    D

    -verbose


    正确答案: A
    解析: 暂无解析

  • 第7题:

    单选题
    下列有关类声明的代码片段,哪一项是正确的?()
    A

     import java.sql.*; package school; class Student{ }

    B

     package school; import java.sql.*; class Student{ }

    C

     package school; class Student{ } import java.sql.*;

    D

     package school; import java.sql.*;private String name; class Student{ }


    正确答案: A
    解析: 暂无解析

  • 第8题:

    单选题
    Given the following directory structure: bigProject |--source ||--Utils.java| |--classes |-- And the following command line invocation: javac -d classes source/Utils.java Assume the current directory is bigProject,what is the result?()
    A

    If the compile is successful, Utils.class is added to the source directory.

    B

    The compiler returns an invalid flag error.

    C

    If the compile is successful, Utils.class is added to the classes directory.

    D

    If the compile is successful, Utils.class is added to the bigProject directory.


    正确答案: D
    解析: 暂无解析

  • 第9题:

    单选题
    JBuilder中包含多种文件,他们被放在不同的目录下,下面4种类型的文件描述中,哪种是错误的()
    A

    编译后的java二进制码放在classes目录下

    B

    java源文件放在scr目录下

    C

    java程序运行时的工作目录就是工程所在目录,工作目录是指java程序运行时默认的当前目录

    D

    编译中产生的obj临时文件和最终产生的可执行文件都放在Debug目录下


    正确答案: B
    解析: 暂无解析

  • 第10题:

    单选题
    In WebLogic, the development feature to automatically load/refresh the changes of a Java classes  at run time is called().
    A

    HotSwap

    B

    FastSwap

    C

    HotDeploy

    D

    FastDeploy

    E

    FastReload


    正确答案: E
    解析: 暂无解析

  • 第11题:

    单选题
    You completed your Java procedure for your external Java function activity, and you now want todeploy this to your server. What would you do to deploy the Java procedure?()
    A

    take the Java sources (.java) files and include them in your $APPL_TOP

    B

    take the Java sources (.java) files and include them in your CLASSPATH

    C

    take the Java classes (.class) files and include them in your $APPL_TOP

    D

    take the Java classes (.class) files and include them in your CLASSPATH


    正确答案: B
    解析: 暂无解析

  • 第12题:

    单选题
    Report Card shows parents ______.
    A

    certain school rules

    B

    after—school activities

    C

    plans for classes and tests

    D

    children’s school life and work


    正确答案: B
    解析:
    从Report Card一栏里“Report card about your school life and work will be given to your parents.”可知选D。

  • 第13题:

    假设在目录myprj/src/school中有Java源文件Student.java,如果希望该文件编译后的类文件出现在目录myprj/classes/school中,应该使用下列哪一个命令?() 

    • A、cd myprj/src javac –d ../classes school/Student.java
    • B、cd myprj/src javac ../classes school/*.java
    • C、cd myprj javac –d ../classes school/*.java
    • D、cd myprj/src/school javac –d ../classes school/Student.java

    正确答案:D

  • 第14题:

    若使当前编译的Java文件所引用的类文件不在当前目录下,需要在Java命令后面添加参数()。

    • A、-cp
    • B、-g
    • C、-classpath
    • D、-verbose

    正确答案:C

  • 第15题:

    下列有关类声明的代码片段,哪一项是正确的?() 

    • A、 import java.sql.*; package school; class Student{ }
    • B、 package school; import java.sql.*; class Student{ }
    • C、 package school; class Student{ } import java.sql.*;
    • D、 package school; import java.sql.*;private String name; class Student{ }

    正确答案:B

  • 第16题:

    JBuilder中包含多种文件,他们被放在不同的目录下,下面4种类型的文件描述中,哪种是错误的()

    • A、编译后的java二进制码放在classes目录下
    • B、java源文件放在scr目录下
    • C、java程序运行时的工作目录就是工程所在目录,工作目录是指java程序运行时默认的当前目录
    • D、编译中产生的obj临时文件和最终产生的可执行文件都放在Debug目录下

    正确答案:D

  • 第17题:

    Given the following directory structure: bigProject |--source | |--Utils.java | |--classes |-- And the following command line invocation: javac -d classes source/Utils.java Assume the current directory is bigProject,what is the result? ()

    • A、If the compile is successful, Utils.class is added to the source directory.
    • B、The compiler returns an invalid flag error.
    • C、If the compile is successful, Utils.class is added to the classes directory.
    • D、If the compile is successful, Utils.class is added to the bigProject directory.

    正确答案:C

  • 第18题:

    单选题
    给定一个Java源程序Test.Java,在命令行中应该使用下面()语句可以编译、运行该程序。
    A

    A

    B

    B

    C

    C

    D

    D


    正确答案: B
    解析: 暂无解析

  • 第19题:

    单选题
    A

    The classes that they are taking.

    B

    The theatre program at their school.

    C

    The woman’s interest in an internship.

    D

    The man’s experience in a law firm.


    正确答案: A
    解析:
    由录音中“I’m hoping to do something in the arts, maybe some sort of work experience or internship.”,可知C项正确。

  • 第20题:

    单选题
    假设在目录myprj/src/school中有Java源文件Student.java,如果希望该文件编译后的类文件出现在目录myprj/classes/school中,应该使用下列哪一个命令?()
    A

    cd myprj/src javac –d ../classes school/Student.java

    B

    cd myprj/src javac ../classes school/*.java

    C

    cd myprj javac –d ../classes school/*.java

    D

    cd myprj/src/school javac –d ../classes school/Student.java


    正确答案: A
    解析: 暂无解析

  • 第21题:

    单选题
    What time can students take part in the hobby classes?
    A

    From morning to afternoon.

    B

    In their school time.

    C

    In their spare time.

    D

    On Wednesday evening.


    正确答案: D
    解析:
    细节理解题。第二段第二句提到“Students take them in their free periods or after school. ”可知,学生可以在他们的空闲时间参加兴趣课程。

  • 第22题:

    单选题
    JDK工具javadoc的作用是哪项?()
    A

    生成Java文档

    B

    编译Java源文件

    C

    执行Java类文件

    D

    测试Java代码


    正确答案: D
    解析: 暂无解析

  • 第23题:

    单选题
    假设在目录myprj/src/school中有Java源文件Student.java,编译后的类文件出现在目录myprj/classes/school中,应该使用下列哪一个命令来执行这个类?()
    A

    cd myprj/src  java ../classes school.Student

    B

    cd myprj/src/school  java –cp ../classes school.Student

    C

    cd myprj/src/school  java –cp ../../classes school.Student

    D

    cd myprj/src  java –cd ../classes school.Student


    正确答案: A
    解析: 暂无解析

  • 第24题:

    单选题
    在下面哪个web应用目录中可以放置所需要的class文件?()
    A

     /WEB-INF/lib

    B

     /META-INF/lib

    C

     /classes 放置已经编译的类文件

    D

     /WEB-INF/classes


    正确答案: A
    解析: 暂无解析