PHP Exception Handling
- Which of the following is/are an exception?
-
View Hint View Answer Discuss in Forum
NA
Correct Option: E
OutOfRangeException, OverflowException, UnderflowException and OutOfBoundException are exception.
- Which of the following is/are not an exception?
-
View Hint View Answer Discuss in Forum
NA
Correct Option: E
None of these
- How many predefined exceptions does SPL provide access to?
-
View Hint View Answer Discuss in Forum
NA
Correct Option: D
13
- What does SPL stand for?
-
View Hint View Answer Discuss in Forum
NA
Correct Option: D
The standard PHP library(SPL) extends PHP by offering ready-made solutions to commonplace tasks such as file access, iteration of various sorts etc.
- You can extend the exception base class, but you cannot override any of the preceding methods because the are declared as__________.
-
View Hint View Answer Discuss in Forum
NA
Correct Option: D
Marking a method as final prevents it from being overridden by a subclass.