-
Which of these operator is used to generate an instance of an exception than can be thrown by using throw?
-
- alloc
- thrown
- new
- malloc
- None of these
Correct Option: C
new is used to create an instance of an exception. All of java’s built in run-time exceptions have two constructors: one with no parameters and one that takes a string parameter.