When you build an application with coding and testing you s
When you build an application with _____________________ coding and testing, you start with a small portion of code and then build on that base by adding an operation or two at a time.
For the following code, an event handler named investment_change is var investment_change = function() { var years = parseInt( $(\"years\").value ); alert(\"Years: \" + years); } window.onload = function() { $(\"investment\").onchange = investment_change; }
a. attached to the onchange event of the global window object.
b. attached to the onload event of a control with an id of “investment”.
c. attached to the onchange event of a control with an id of “investment”.
d. attached to the onload event of the global window object.
Solution
Answer: d. attached to the onload event of the global window object.
When you build an application with ________attached to the onload event of the global window object_____________ coding and testing, you start with a small portion of code and then build on that base by adding an operation or two at a time

