IT 114: Introduction to Java
Answers to Class 3 Ungraded Quiz

  1. Would Java be a good language for writing a small program?
    no
  2. What is the Unix command you would use to copy a file?
    cp
  3. What is the Unix text editor we will be using in this course?
    nano
  4. What is the name of the Java compiler?
    javac
  5. What kind of file does the compiler create?
    an object file
  6. What does the file mentioned above contain?
    bytecodes
  7. What is the extension of the file created above?
    .class
  8. What is the name of the program that runs the file created above.
    java
  9. What is this file sometimes called?
    Java Runtime Environment
  10. When you run this program do you give it the full name of the file?
    no. you leave out the extension