Computer Science, asked by shikharsingh3126, 1 year ago

Which of the below statement is/are true about Error?
A. An Error is a subclass of Throwable.
B. An Error is a subclass of Exception.
C. Error indicates serious problems that a reasonable application should not try to catch.
D. An Error is a subclass of IOException.
A.A and D
B.A and B
C.A and C
D.B and C

Answers

Answered by Anonymous
21
C. A and C

Hope it helps u
Answered by GulabLachman
0

The true statements are A and B.

  • A subtype of throwable called error denotes significant issues that an appropriate application shouldn't attempt to catch.
  • Most of these errors are generally atypical circumstances.
  • Using a try and catch block, it can easily respond if an exception arises.
  • Program execution will end if an error arises that we are unable to address.
  • Thus, both statements A and B are true.

#SPJ2

Similar questions