Interview MCQ Set 1 1. What will be the output of the following PHP code? <?php $title = “O’malley wins the heavyweight championship!”; echo ucwords($title);?> a) O’Malley Wins The Heavyweight Championship! b) O’malley Wins The Heavyweight Championship! c) O’Malley wins the heavyweight championship! d) o’malley wins the heavyweight championship! AnswerAnswer: d [Reason:] The ucwords() function…