CS 1110/1111: Introduction to Programming

Lecture 17

Announcements

Test Review

Test 1 is held during normal class meeting time. It is 50 minutes long (even if you are in 1111).

LNEC and excused absences should already know about their arrangements. If you do not, contact LNEC or your professor immediately!

You can download the code written during in-class review for 1110.001 and 1110.002.

Test 1 Review Sheet

Topics

Studying for the Test

  1. Practice coding without using Eclipse.

    You'll be writing code on paper. This feels different than writing it in Eclipse. You don't want to be surprised by how different it feels. Practice writing code by hand.

    A few small syntax errors is OK. But if you are really off we will take off points. Try to write correct code

    We'll usually give you the basic wrapper and have you fill in the rest. For example, we might give you this:

    import java.util.Scanner;
    
    public class Question2 {
        public static void main(String[] args) {
    
        (we'll leave space here for you to write)
        }                                       
    }

    Try re-solving the homework problems on paper without looking at your code or textbook.

    You can find more sample problems in Programming Challenges in the textbook; try, for example, chapter 3's problems 8, 12, 15, and 16; and chapter 4's problems 2, 7, 8, 9, and 16.

    Also remember that speed matters. 50 minutes is not a long time.

  2. Reading programs: we'll show you code and ask you what it does. You won't be able to have Java run it. Practice thinking through code without running it.
  3. Review the Lecture Notes: Not everything in the book is equally important. Review the lecture notes to see what we emphasized. If you are confused by some point, check the podcast.
Copyright © 2014 by Luther Tychonievich. All rights reserved.