Hello world!

Code Snippet

Looking at the JavaScript and HTML below (taken from one of our example pages), answer the questions in the quiz to the right. Through the magic of JavaScript, your quiz will be automatically scored as you take it.

   <script type="text/javascript">

   function showAlert()
   {
     alert("Hello world!");
   }

   </script>
</head>
<body onload="showAlert()">

Quiz

alert() is a/an:

Function
Method
Event Handler
String

showAlert() is a/an:

Function
Method
Event Handler
String

onload is a/an:

Function
Method
Event Handler
String

"Hello world!" is a/an:

Function
Method
Event Handler
String



And now, back to our agenda!