TEST BANK
ST
UV
Absolute Java,
IA
6th edition
.A
PP
RO
Authors:
Walter Savitch, Kenrick Mock
VE
◊ ALL CHAPTERS
D
◊ INSTANT PDF DOWNLOAD💯💯💯
??
◊ ORIGINAL FROM PUBLISHER
?
MEDCONNOISSEUR
, Chapter 1 Getting Started 1
ST
Chapter 1
Getting Started
UV
1 Multiple Choice
I
1) Java is an object-oriented programming language. An object-oriented language
A.
(a) Uses structured programming.
(b) Views a program as consisting of objects which communicate through interactions.
(c) Functionally breaks down problems into smaller, more manageable problems.
(d) All of the above.
AP
Answer: B
2) In Java, the equal sign is used as the ___________ operator.
(a) increment
PR
(b) decrement
(c) assignment
(d) negation
Answer: C
OV
3) In Java, source code is compiled into object code called ______________.
(a) Bit-code
(b) Class code
ED
(c) Method code
(d) Byte-code
Answer: D
4) The hardest kind of error to detect in a computer program is a:
??
(a) Syntax error
(b) Run-time error
(c) Logic error
(d) All of the above
?
Answer: C
Copyright © 2016 Pearson Education, Inc., Hoboken NJ
, Chapter 1 Getting Started 2
5) Identify the invalid Java identifier.
(a) 1Week
(b) Week1
(c) amountDue
(d) amount_due
ST
Answer: A
6) What is the value of the variable amountDue?
UV
double price = 2.50;
double quantity = 5;
double amountDue = 0;
I
amountDue = price * quantity;
A.
(a) 12
(b) 12.25
AP
(c) 12.5
(d) 13
Answer: C
PR
7) What is the value of 7.52e-5?
(a) 752000.0
(b) 0.0000752
(c) 0.000752
OV
(d) 0.00752
Answer: B
8) What is the Java expression for 4a2 + 2b * c?
(a) (4 * a) + (2 * b) * c
ED
(b) (4 * a * a) + ((2 * b) * c)
(c) ((4 * a * a) + (2 * b)) * c
(d) (4 + a * a) + ((2 + b) * c)
Answer: B
??
9) What is the Java expression for 27xy?
(a) 27 + (x * y)
(b) 27 * (x + y)
?
(c) 27 * x * y
(d) 27x * y
Answer: C
Copyright © 2016 Pearson Education, Inc., Hoboken NJ
, Chapter 1 Getting Started 3
10) The value of the expression (int) 27.6 evaluates to:
(a) 28
(b) 27
(c) 26
(d) None of the above.
ST
Answer: B
11) Which operator is used to concatenate two strings?
(a) +
UV
(b) –
(c) *
(d) /
Answer: A
I A.
12) Which operator returns the remainder of integer division?
(a) %
(b) /
(c) *
AP
(d) none of the above
Answer: A
13) What is the value of the variable c in the statements that follow?
PR
String phrase = "Make hay while the sun is shining.";
char c = phrase.charAt(10);
(a) w
OV
(b) h
(c) i
(d) None of the above
Answer: B
ED
14) The escape sequence the represents the new-line character is:
(a) \r
(b) \t
(c) \n
??
(d) \\
Answer: C
?
Copyright © 2016 Pearson Education, Inc., Hoboken NJ