Services
Discover
Homeschooling
Ask a Question
Log in
Sign up
Filters
Done
Question type:
Essay
Multiple Choice
Short Answer
True False
Matching
Topic
Computing
Study Set
Java Programming Study Set 1
Quiz 1: Creating Your First Java Classes
Path 4
Access For Free
Share
All types
Filters
Study Flashcards
Practice Exam
Learn
Question 21
Multiple Choice
After a successful compile, you can run the class file on any computer that has a ____.
Question 22
Multiple Choice
You use an import statement when you want to access a built-in Java class that is contained in a group of classes called a(n) ____.
Question 23
Multiple Choice
A ____ is an error not detected until the program asks the computer to do something wrong, or even illegal, while executing.
Question 24
Multiple Choice
In programming, named computer memory locations are called ____because they hold values that might vary.
Question 25
Multiple Choice
Whenever a method requires multiple arguments, the arguments are always separated with ____.
Question 26
Multiple Choice
In a ____ environment, you can change directories using the cd command. For example, to change to a directory named MyClasses , you type cd MyClasses and press Enter.
Question 27
Multiple Choice
public class First { public static void main(String[] args) { System.out.println("First Java application") ; } } Given the above code, which item identifies the method's return type?
Question 28
Multiple Choice
____ is the process the compiler uses to divide your source code into meaningful portions; the message means that the compiler was in the process of analyzing the code when the end of the file was encountered prematurely.