Midterm ReviewExam:-material from labs, lectures, and text through Chapter 8.3-multiple choice, T/F, fill in the blank questions-full class time on Thursday-all answers should be found in textbookChapter 1 Summary:-objects created from existing classes in Alice-what does an object have?oCentero6 directions/degrees of freedom: forward, back, left, right, up, down-what can objects do?oPerform actions (methods)Drag tilesChapter 2 Summary-program is a set of instructions that tell a computer what to do-problem solving processoread scenario – understand problemodesign the solution – create storyboardocode the solution – write method/convert into computer languageotest the solution- revise as needed-ways to execute statementsosequential- doInOrderoparallel- doTogetherspecify several statements to execute at the same timelooks like that when program is running-comments explain programotells reader exactly what the code doesChapter 3 Summary-Methods are things object know how to do-Creating methodsoKnow for both Java and AliceoMethods are named blocks of statement that are run when you use the tilewith the name of the methodoBlock of code identified so it can be used from other parts of the codeoWill run when invoke it by name (send message to object to tell it to domethod)-Method’s parametersoPlaceholders that take on a value when the method is called (invoked)o