PHP Basics Learning Mode

Mark works as a Web Developer for Unicorn Inc. He develops an application in PHP using the following code:

<?php
      switch(1) {
      case 1: print("Book Details"); 
      case 2: print("Book Author"); 
      default: print("Missing Book");
      }
?>

What will be the output of the script?