1) How many times will the following code print "yea"? for(int a = 0; a < 5; a++) { for(int b = 10; b < 12; b++) { system.out.println("yea"); } } 2) Suppose I move the mouse pointer outside of my program's window. Which method will be called? 3) Make me a FOR loop that counts 48,36,24,12,0. 4) Make me a FOR loop that counts 0.3, 0.6, 1.2, 2.4, 4.8. 5) Make me a program that uses nested loops to draw a 6 wide by 5 tall grid of circles. 6) (one or two points) Finish the program at http://euclid.nmu.edu/~rappleto/Classes/CS120/Tests+Quizes/LoopTest2015/method.java. You have to finish a method that draws stuff. 7) (one or two points) Finish the program at http://euclid.nmu.edu/~rappleto/Classes/CS120/Tests+Quizes/LoopTest2015/method.java. You have to finish a method that computes a tiny bit of math. 8) (one point) Make me a program that counts the number of times you have clicked the mouse. -OR- (two points) Make me a program that counts the number of times you have clicked the mouse in the upper right region of the screen.