ITSC 1213 REVIEW TIPS QUESTIONS AND
ANSWERS SET A+
✔✔The maximum number of values a method is allowed to return is - ✔✔one and only
one
✔✔The Java equivalent of cout is - ✔✔System.out.println(...);
✔✔In Java, a class - ✔✔defined the operations an object can perform and the
information that object "knows"
✔✔In Java, everything goes in a class - ✔✔True
✔✔In a Java class, the name of a method that can be executed is - ✔✔main
✔✔A variable that refers to an object is called an - ✔✔object reference variable or
object variable
✔✔Things an object knows about itself are called - ✔✔instance variables
✔✔Things an object can do are called - ✔✔methods
✔✔a class is a _______ for creating an object - ✔✔blueprint
✔✔Besides object reference variables, Java recognizes - ✔✔primitive variables
✔✔an object is an _______ of a class - ✔✔istance
✔✔What is the correct way to create a new object of the Fruit class? - ✔✔Fruit apple =
new Fruit();
✔✔In the following statement, the term for the word "apple" is what
ANSWERS SET A+
✔✔The maximum number of values a method is allowed to return is - ✔✔one and only
one
✔✔The Java equivalent of cout is - ✔✔System.out.println(...);
✔✔In Java, a class - ✔✔defined the operations an object can perform and the
information that object "knows"
✔✔In Java, everything goes in a class - ✔✔True
✔✔In a Java class, the name of a method that can be executed is - ✔✔main
✔✔A variable that refers to an object is called an - ✔✔object reference variable or
object variable
✔✔Things an object knows about itself are called - ✔✔instance variables
✔✔Things an object can do are called - ✔✔methods
✔✔a class is a _______ for creating an object - ✔✔blueprint
✔✔Besides object reference variables, Java recognizes - ✔✔primitive variables
✔✔an object is an _______ of a class - ✔✔istance
✔✔What is the correct way to create a new object of the Fruit class? - ✔✔Fruit apple =
new Fruit();
✔✔In the following statement, the term for the word "apple" is what