Java Programming

 

     

 

Monday, May 25th - Friday May 29th

 

Wrap Up Week - May 25th

Wrap Up Week - May 25th

This week is time to make up any missing work. If you have completed all the assignments congratulations on a successful year in Java, you are done!

If you are missing work this is the week to get that work completed. If you are working on assignments that cannot be submitted electronically to Canvas then just email me the work otherwise submit your work to Canvas. 

There will be no final exam so at this point you are done.

Congratulations on completing Java Programming.

Unfortunately, I will not be around next year to see how you are doing since I am retiring this year after 34 years of teaching. It has been a pleasure working with you and I hope you enjoyed Java. All the best as you continue your education.

Sincerely,

Mr. Dodge


 

Homework

Enjoy your summer!

 

What

In this lesson, you will learn how to:
• Use the IF control statement to effect execution of instructions
• Use the WHILE control statement to create a conditional loop for repetitive behavior

 

Why

When you create an animation or a game you may want an object to execute an action based upon a decision. You can use the IF control structure to help an object make a decision. “If you encounter a rock turn left, otherwise continue going forward”. You may also want objects in your animation to execute an action while
some condition is true. “While the boat moves left wave the person’s hand”. You can use the WHILE control structure to continuously loop an action while a condition is true.

 

How

By completing the slides, quiz and practice exercises.