ROGERS CADENHEAD
My Websites
Workbench
Drudge Retort
SportsFilter
My Books
Teach Yourself Java in 21 Days, Eighth Edition
Teach Yourself Java in 24 Hours, Eighth Edition
Teach Yourself C++ in 24 Hours |
Day 17: Communicating Across the Internet
Certification Practice
Each chapter of the book ends with a Certification Practice question that's comparable to what you could expect to be asked on a Java certification test. Here's the answer for chapter 17:
Answer (d) is correct. The class is not an application because it lacks the main() method required to run a class in that manner.
Answer (c) is incorrect. If there was a main() method that created a ReadTemps object, the output would be 70. The call to put(int[]) in the class puts the three integers in the array at the first three positions of the buffer, replacing their original contents, and sets the position after them. The subsequent call to get() returns 70, the integer in the fourth position.
Answers (a) and (b) are incorrect.
Return to Day 17
|