Sams Teach Yourself Java 2 in 24 Hours

Sams Teach Yourself Java 2 in 24 Hours

By Rogers Cadenhead

Quiz

Test your knowledge of the material covered in this chapter by answering the following questions.

Questions

  1. When you compile a Java program, what are you doing?
    1. Saving it to disk
    2. Converting it into a form the computer can better understand
    3. Adding it to your program collection
  2. What is a variable?
    1. Something that wobbles but doesn't fall down
    2. Text in a program that the compiler ignores
    3. A place to store information in a program
  3. What is the process of fixing errors called?
    1. Defrosting
    2. Debugging
    3. Decomposing

Answers

  1. b. Compiling converts a .java file into a .class file or set of .class files.
  2. c. Variables are one place to store information; later you'll learn about others, such as arrays and constants. Weebles wobble but they don't fall down, and comments are text in a program that the compiler ignores.
  3. b. Because errors in a computer program are called bugs, fixing those errors is called debugging. Some programming tools come with a tool called a debugger that helps you fix errors.

Share ThisShare This

Informit Network