InterviewSolution
Saved Bookmarks
| 1. |
What is autoFlush attribute? |
|
Answer» The autoFlush attribute specifies whether buffered output should be flushed automatically when the buffer is filled, or whether an exception should be raised to indicate buffer overflow. A value of true (default) indicates automatic buffer flushing and a value of false throws an exception. |
|