BIT 115: Introduction To Programming What’s Due When • Listed in Course Schedule • Let’s look at that now! BIT 115: Introduction To Programming 2 Midterm Exam • Next lecture period – Pencil & paper ONLY! • Don’t forget your own pencils! – You will be given the entire class period • When you’re done, you’re free to leave – Should take about 1 to 1½ hours • You can stay after if you really want to / need to • Practice midterm on website BIT 115: Introduction To Programming 3 Midterm Exam • Make sure that you’re familiar with basic output. • Example: int number = 3; if( number < 4 ) System.out.println(“ANSWER A”); else System.out.println(“ANSWER B”); BIT 115: Introduction To Programming 4 Midterm Exam • Make sure that you’re familiar with basic output. • Example: int n = 3; if( n >= 5 ) System.out.println( n + “is bigger than 4”); else System.out.println( n + “ is small”); BIT 115: Introduction To Programming 5 A3 Assignment • A3 will be a project done in pairs or triples – 2 or 3 people per group • You can find a partner, or I can help look – If you really really want to, you can do A3 on your own • Topic: Finding your way out of a maze • We’ll look at this in detail now BIT 115: Introduction To Programming 6