QUESTION
(a) Outline the five main steps in the Web Design Process
(b) Draw an annotated diagram explaining how data is transmitted to web servers during a standard form submit event
(c) Write HTML code fragment to define a client side image map that uses two different hotspot area shapes. The values you use for the coordinates are not important, invent some imaginary coordinates just to demonstrate how each hotspot is defined
(d) What is the value of the variable x after the following JavaScript codes are executed?
var x = 0;
var y = 2;
var z = 3;
var a = new Array();
a[0] = "dog";
a[1] = "cat";
a[2] = "mouse";
a[3] = "elephant";
if( y
x = a[y];
}else{
x = a[z];
}
window.alert( "x contains " + x );