CS 101 Notes: 9/28/2010 2 write code questions "draw turtles" Q21 - write code to do .... You must declare your variables Q22 - write a method to ..... pay attention to the parameters int degrees = 360 / numOfSides Multiple Choice - 20 questions, 3 points each understanding the Java Language x = 0; y = 0; while (x < 4) { y = y + 2; x = x + 1; } x: 0, 1, 2, 3, 4 y: 0, 2, 4, 6, 8 -------- x: 5 y: 8, 13 penUp()