CIS1068 TEN MINUTE TEST #1 January 26, 2010 (5) 1. We say about Java programs: write it once, run anywhere. What does it mean? (5) 3. For each of the following identifiers specify if they are or not legal joeAnn joe$Ann joe*ann joe_ann31 31joeAnn (5) 4. Indicate which assignments are legal int x = 3; double y = x; int z = y; long w = x; short u = x; (10) 5. Indicate how in homework 1 you have prompted the user and read his/her name.