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 1
Multiple Choice
Given the statement: System.out.println("First Java application") ; out refers to ____.
Question 2
Multiple Choice
Locating and repairing all syntax errors is part of the process of ____ a program.
Question 3
Multiple Choice
____ are pieces of information that are sent into, or passed to, a method, usually because the method requires the information to perform its task or carry out its purpose.
Question 4
Multiple Choice
In Java, the reserved keyword ____ means that a method is accessible and usable even though no objects of the class exist.
Question 5
True/False
When you issue the command to compile a class containing errors, the Java compiler does not produce any error messages. You will first need to run the class in order to see error messages.
Question 6
True/False
A Java identifier can contain only letters, digits, ampersands, or number signs.
Question 7
True/False
Dots (or periods) in a Java statement are used to separate the names of the components that make up the statement.
Question 8
True/False
If an object's methods are well written, the user is unaware of the low-level details of how the methods are executed, and the user must simply understand the interface or interaction between the method and the object.