PHP Exception Handling


  1. Which of the following is/are an exception?











  1. View Hint View Answer Discuss in Forum

    NA

    Correct Option: E

    OutOfRangeException, OverflowException, UnderflowException and OutOfBoundException are exception.


  1. Which of the following is/are not an exception?











  1. View Hint View Answer Discuss in Forum

    NA

    Correct Option: E

    None of these



  1. How many predefined exceptions does SPL provide access to?











  1. View Hint View Answer Discuss in Forum

    NA

    Correct Option: D

    13


  1. What does SPL stand for?











  1. 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.



  1. You can extend the exception base class, but you cannot override any of the preceding methods because the are declared as__________.











  1. View Hint View Answer Discuss in Forum

    NA

    Correct Option: D

    Marking a method as final prevents it from being overridden by a subclass.