Starting Out with Java From Control Structures through Objects 5th Edition Tony Gaddis Test Bank instant download
Starting Out with Java From Control Structures through Objects 5th Edition Tony Gaddis Test Bank instant download
https://testbankdeal.com/product/starting-out-with-java-from-
control-structures-through-objects-5th-edition-tony-gaddis-test-
bank/
https://testbankdeal.com/product/starting-out-with-java-from-control-
structures-through-objects-5th-edition-tony-gaddis-solutions-manual/
testbankdeal.com
https://testbankdeal.com/product/starting-out-with-c-from-control-
structures-through-objects-7th-edition-tony-gaddis-test-bank/
testbankdeal.com
https://testbankdeal.com/product/starting-out-with-java-from-control-
structures-through-objects-6th-edition-gaddis-test-bank/
testbankdeal.com
https://testbankdeal.com/product/organizational-behavior-a-practical-
problem-solving-approach-1st-edition-kinicki-test-bank/
testbankdeal.com
Intercultural Communication Globalization and Social
Justice 2nd Edition Sorrells Solutions Manual
https://testbankdeal.com/product/intercultural-communication-
globalization-and-social-justice-2nd-edition-sorrells-solutions-
manual/
testbankdeal.com
https://testbankdeal.com/product/public-health-science-nursing-
practice-1st-edition-savage-test-bank/
testbankdeal.com
https://testbankdeal.com/product/short-term-financial-management-3rd-
edition-maness-test-bank/
testbankdeal.com
https://testbankdeal.com/product/intermediate-accounting-reporting-
and-analysis-2017-update-2nd-edition-wahlen-test-bank/
testbankdeal.com
https://testbankdeal.com/product/introduction-to-geospatial-
technologies-1st-edition-shellito-test-bank/
testbankdeal.com
Business Communication Essentials 7th Edition Bovee
Solutions Manual
https://testbankdeal.com/product/business-communication-
essentials-7th-edition-bovee-solutions-manual/
testbankdeal.com
Gaddis: Starting Out with Java: From Control Structures through Objects, 5/e © 2012 Pearson Education
Chapter 6
MULTIPLE CHOICE
ANS: B
2. Class objects normally have __________ that perform useful operations on their data, but primitive variables do
not.
a. fields
b. instances
c. methods
d. relationships
ANS: C
3. In the cookie cutter metaphor, think of the ________ as a cookie cutter and ________ as the cookies.
a. object; classes
b. class; objects
c. class; fields
d. attribute; methods
ANS: B
ANS: D
5. When you are working with a ____________, you are using a storage location that holds a piece of data.
a. primitive variable
b. reference variable
c. numeric literal
d. binary number
ANS: A
ANS: B
ANS: C
8. Java allows you to create objects of this class in the same way you would create primitive variables.
a. Random
b. String
c. PrintWriter
d. Scanner
ANS: B
ANS: D
10. Data hiding, which means that critical data stored inside the object is protected from code outside the object, is
accomplished in Java by:
a. using the public access specifier on the class methods
b. using the private access specifier on the class methods
c. using the private access specifier on the class definition
d. using the private access specifier on the class fields
ANS: D
ANS: D
12. You should not define a class field that is dependent upon the values of other class fields:
a. in order to avoid having stale data
b. because it is redundant
c. because it should be defined in another class
d. in order to keep it current
ANS: A
ANS: D
ANS: B
ANS: A
16. A constructor:
a. always accepts two arguments
b. has return type of void
c. has the same name as the class
d. always has an access specifier of private
ANS: C
17. Which of the following statements will create a reference, str, to the String, “Hello, World”?
a. String str = "Hello, World";
b. string str = "Hello, World";
c. String str = new "Hello, World";
d. str = "Hello, World";
Gaddis: Starting Out with Java: From Control Structures through Objects, 5/e © 2012 Pearson Education
ANS: A
18. Two or more methods in a class may have the same name as long as:
a. they have different return types
b. they have different parameter lists
c. they have different return types, but the same parameter list
d. you cannot have two methods with the same name
ANS: B
19. Given the following code, what will be the value of finalAmount when it is displayed?
ANS: D
20. A class specifies the ________ and ________ that a particular type of object has.
a. relationships; methods
b. fields; object names
c. fields; methods
d. relationships; object names
ANS: C
21. This refers to the combining of data and code into a single object.
a. Data hiding
b. Abstraction
c. Object
d. Encapsulation
ANS: D
ANS: B
23. In your textbook the general layout of a UML diagram is a box that is divided into three sections. The top
section has the _______; the middle section holds _______; the bottom section holds _______.
a. class name; attributes or fields; methods
b. class name; object name; methods
c. object name; attributes or fields; methods
d. object name; methods; attributes or fields
ANS: A
ANS: D
a. methods private
b. fields private
c. fields public
d. fields and methods public
ANS: B
26. After the header, the body of the method appears inside a set of:
a. brackets, []
b. parentheses, ()
c. braces, {}
d. double quotes, ""
ANS: C
ANS: C
a. /
b. @
c. -
d. +
ANS: D
ANS: B
30. When an object is created, the attributes associated with the object are called:
a. instance fields
b. instance methods
c. fixed attributes
d. class instances
ANS: A
31. When an object is passed as an argument to a method, what is passed into the method’s parameter variable?
a. the class name
b. the object’s memory address
Gaddis: Starting Out with Java: From Control Structures through Objects, 5/e © 2012 Pearson Education
ANS: B
ANS: D
ANS: D
34. Which of the following statements will create a reference, str, to the string, “Hello, world”?
a. 1
b. 2
c. 1 and 2
d. Neither 1 or 2
ANS: C
ANS: C
36. Given the following code, what will be the value of finalAmount when it is displayed?
orderNum = orderNumber;
orderAmount = orderAmt;
orderDiscount = orderDisc;
}
ANS: C
ANS: C
38. Instance methods do not have this key word in their headers:
a. public
b. static
c. private
d. protected
ANS: B
39. Which of the following is not involved in finding the classes when developing an object-oriented application?
ANS: C
a. archive c. collection
b. package d. attachment
ANS: B
41. Quite often you have to use this statement to make a group of classes available to a program.
a. import c. link
b. use d. assume
ANS: A
import java.util.Scanner;
This is an example of
ANS: B
import java.util.*;
ANS: A
44. The following package is automatically imported into all Java programs.
a. java.java c. java.util
b. java.default d. java.lang
ANS: D
TRUE/FALSE
ANS: T
Gaddis: Starting Out with Java: From Control Structures through Objects, 5/e © 2012 Pearson Education
ANS: T
ANS: T
4. A method that stores a value in a class's field or in some other way changes the value of a field is known as a
mutator method.
ANS: T
ANS: F
ANS: T
7. Shadowing is the term used to describe where the field name is hidden by the name of a local or parameter
variable.
ANS: T
8. The public access specifier for a field indicates that the attribute may not be accessed by statements outside
the class.
ANS: F
9. A method that gets a value from a class's field but does not change it is known as a mutator method.
ANS: F
10. Instance methods do not have the key word static in their headers.
ANS: T
11. The term "default constructor" is applied to the first constructor written by the author of a class.
ANS: F
12. When a local variable in an instance method has the same name as an instance field, the instance field hides the
local variable.
ANS: F
13. The term "no-arg constructor" is applied to any constructor that does not accept arguments.
ANS: T
14. The java.lang package is automatically imported into all Java programs.
ANS: T
Another Random Scribd Document
with Unrelated Content
back
back