Sunday, November 25, 2007

Scored thru 11/25 (20 pts possible) - see Edline for your score tomorrow evening.

Thursday, November 1, 2007

Scored through 10/31. All blogs from this point forward are second marking period.
*****************************************************************************************************************************************************************************************************************************************************************************************************************************************

Sunday, October 21, 2007

Scored through 10/18. Check Edline for scores on Monday evening.

Sunday, October 7, 2007

Scored through 10/5. Check edline for updated grades on Monday evening.

Wednesday, October 3, 2007

10/3/07

Provide yourself an example (not one from your instructor) of how you use a particular command thatwill help jog your memory in the future when you need that command again. You must provide a littlecode as well as a written explanation with this one.

Scope refers to the area of a program in which an identifier is valid and has meaning. Instance variables are usually declared private and have class scope. Class scope begins at the opening left brace ({) of the class definition and terminates at the closing brace (}). Class scope enables methods to directly access all of its instance variables. The scope of a local variable extends from the point of its definition to the end of the enclosing block. The scope of a parameter is the entire body of its method.

Sunday, September 23, 2007

Scored on 9/23/07. Check edline for updated grades. I went back and graded ones from the previous weeks as well. Make sure you put a little more detail into your responses.

Tuesday, September 18, 2007

Are there any specific tips you would give to someone else tackling the same problem? How wouldwhat you suggest benefit that person in solving the problem?

rules for identifers are must begin w/letter can then contain letters digits, + underscovers nospaces.

Monday, September 17, 2007

5. Provide yourself an example (not one from your instructor) of how you use a particular command thatwill help jog your memory in the future when you need that command again. You must provide a littlecode as well as a written explanation with this one.



System.out.println(" ** ** "); System.out.println(" ** **"); System.out.println(" ** **"); System.out.println(" ** **"); System.out.println(" ***********"); System.out.println(" ** **"); System.out.println(" ** * * **"); System.out.println(" ** * * **"); System.out.println(" ** ****** **"); System.out.println(" ************* "); System.out.println(" ");

Friday, September 14, 2007

9/14/07

Provide yourself an example (not one from your instructor) of how you use a particular command thatwill help jog your memory in the future when you need that command again. You must provide a littlecode as well as a written explanation with this one?
System.out.priinterln("hey")
systemout.printerln("hey"0

Tuesday, September 11, 2007

9/11/07

What problems did you encounter while developing your solution? How do you plan to overcomethem?/How did you overcome them?

The problem that I got was to to pick up the marker and make the mouth. I overcome the problem by using marker.move(40,60).

Monday, September 10, 2007

9/10/07

How did you go about testing your program? What were the results of that testing?

marker.up(); marker.turnRight(90); marker.forward(100); marker.down(); marker.drawString(" A"); marker.move(-100,0); marker.up(); marker.move(-175,100); marker.down(); marker.move(175,100); marker.drawString(" B");