Quiz
Back to schedule page
Prev
Next
Quiz Number 6 Answers
SWE 432, Fall 2008
October 13
In class, did we say that we have more engineers or more physicists?
Engineers
In class, how did we say that computer science differs from other sciences?
No natural phenomena to understand
Answer each of the following with either a
T
=true,
F
=false):
T
JavaScript is not strongly typed.
T
Users can use forms and submit data without running the JavaScript.
F
JavaScript is a subset of Java.
T
JavaScript is executed on the client.
From the
users'
perspective, describe what the following JavaScript function does.
<SCRIPT type="text/javascript"> function F1 () { document.formA.age.focus(); } </SCRIPT>
It sets the focus in the "age" field of the form "formA".