Answers Back to schedule page
Prev  Next
Quiz Number 6

SWE 432, Fall 2008
October 13
 

  1. In class, did we say that we have more engineers or more physicists?

  2. In class, how did we say that computer science differs from other sciences?

  3. Answer each of the following with either a T=true, F=false):
    1.      JavaScript is not strongly typed.
    2.      Users can use forms and submit data without running the JavaScript.
    3.      JavaScript is a subset of Java.
    4.      JavaScript is executed on the client.


  4. From the users' perspective, describe what the following JavaScript function does.
          <SCRIPT type="text/javascript">
            function F1 ()
            {
              document.formA.age.focus();
            }
          </SCRIPT>