1 | Our checkbox applet has five checkboxes: Checkbox[] box = new Checkbox[5]; box[0] = new Checkbox( "Shoes" ); box[1] = new Checkbox( "Socks" ); box[2] = new Checkbox( "Pants" ); box[3] = new Checkbox( "Shirt" ); box[4] = new Checkbox( "Underwear", true ); |
2 | Note that box[4] is checked by default |