InterviewSolution
Saved Bookmarks
| 1. |
Which exception handler can be used when character encoding is not supported?(a) UnsupportedException(b) UnsupportedEncodingException(c) SupportException(d) EncodingException |
|
Answer» Correct answer is (b) UnsupportedEncodingException The explanation is: The encoding that is unsupported in a system can be handled. The exception handler is UnSupportedEncodingException class. An object of this class can be created which will catch the exception and handle it. |
|