How many error levels are available in PHP?
Select an option to see the answer and solution.
What is the description of Error level E_ERROR?
Select an option to see the answer and solution.
Which version of PHP introduced E_STRICT Error level?
Select an option to see the answer and solution.
Which character do the error_reporting directive use to represent the logical operator NOT?
Select an option to see the answer and solution.
Say you want to report error concerned about fatal run-time, fatal compile-time error and core error which statement would you use?
Select an option to see the answer and solution.
Which version introduced the function error_get_last()?
Select an option to see the answer and solution.
Which of the following statements causes PHP to disregard repeated error messages that occur within the same file and on the same line?
Select an option to see the answer and solution.
Which function initializes the constants necessary for using the openlog(), clodelog(), and syslog() functions?
Select an option to see the answer and solution.
Which logging option’s description is, if an error occurs when writing to the syslog, send output to the system console?
Select an option to see the answer and solution.
Which function is responsible for sending a custom message to the system log?
Select an option to see the answer and solution.
Which version of PHP was added with Exception handling?
Select an option to see the answer and solution.
How many methods are available for the exception class?
Select an option to see the answer and solution.
Which version added the method getPrevious()?
Select an option to see the answer and solution.
Which of the following statements invoke the exception class?
Select an option to see the answer and solution.
Which one of the following is the right description for the method getMessage() ?
Select an option to see the answer and solution.
You can extend the exception base class, but you cannot override any of the preceding methods because the are declared as__________
Select an option to see the answer and solution.
What does SPL stand for?
Select an option to see the answer and solution.
How many predefined exceptions does SPL provide access to?
Select an option to see the answer and solution.
Which of the following is/are not an exception?
1. BadFunctionCallException
2. BadMethodCallException
3. LogicException
4. DomainException
Select an option to see the answer and solution.
Which of the following is/are an exception?
1. OutOfBoundException
2. OutOfRangeException
3. OverflowException
4. UnderflowException
Select an option to see the answer and solution.