| 2. |
Besides creating a new instance of a PushbackInputStream, what else is the following line of code doing? PushbackInputStream pis = new PushbackInputStream(System.in, 432);
Please select the best answer.
|
| |
A.
|
Allows the unread() method to "unread" 432 bytes |
| |
B.
|
Allows marking and resetting for this PushbackInputStream |
| |
C.
|
Assigns the value 432 to the PushbackInputStream |
| |
D.
|
Compilation Fails |
| |
E.
|
A Runtime exception is thrown. |