CISC105 Exam 1: Wed, June 27
Make sure to review all of your notes, labs, and example programs from class. Some material may be from lectures only, and will not be found in the book. Also, while the exam will be focused mainly on the material from lecture, it include information only found in the book. So read the sections listed below, or at least be certain that you understand the material well.
Exam 1 Topics/Readings
- Chapter 2, Sections 2.1--2.5
- C Language Elements
- Variables and Data Types
- Arithmetic Expressions
- Basic C Style
- Chapter 3, Sections 3.1, 3.4--3.5
- Functions prototypes, definitions, calls
- Functions with and without arguments
- Function Style
- Chapter 4, Sections 4.1--4.7
- Conditions
- The if statement
- Nested if statements
- Chapter 5, Sections 5.1--5.6, through page 240
- Loops
- While loops: counter and sentinel, motivation and implementation
- For loops
- Chapter 8, Sections 8.1--8.4
- Declaring and Referencing Arrays
- Using loops to access arrays