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
Big Java Binder Early Objects
Quiz 20: Streams and Binary Inputoutput
Path 4
Access For Free
Share
All types
Filters
Study Flashcards
Practice Exam
Learn
Question 61
Multiple Choice
Which of these classes access sequences of characters? I readers II writers III streams
Question 62
Multiple Choice
If serializing object obj requires 12 bytes, how many bytes are required to serialize obj 3 times?
Question 63
Multiple Choice
Use a ____ object to access a file and move a file pointer.
Question 64
Multiple Choice
When storing numbers in a file with fixed record sizes, it is easier to store them in __________ format.
Question 65
Multiple Choice
The readInt and writeInt methods of the RandomAccessFile class read and write integers as ____ quantities.
Question 66
Multiple Choice
The two IO classes used for serialization are _______ and ________.
Question 67
Multiple Choice
Objects are saved in ___________ format in object streams.
Question 68
Multiple Choice
How many methods are required to implement the Serializable interface?
Question 69
Multiple Choice
Based on the code below, the statement that would move the file pointer to byte n counted from the beginning of the file is ___________________. RandomAccessFile test = new RandomAccessFile("record.bat", "r") ;