CS 111 - Program Design I
Exam 1 - Topics
The following is a list of topics covered for the first exam.
This list is not guarenteed to be complete.
Java Language
- Types
- int double char boolean String
- Assignment statements
- Arithmetic operators
- Precendence
- Overloaded operators
- Relational Operators
- equal-equal "= =" - note wiki does not like to show this symbol
- not-equal "! =" - again wiki does not like to show this symbol
- >
- >=
- <
- <=
- While Loops
- initializatoim
- condition
- action
- increment
- Body/Blocks { }
- Methods
- public static void name ( <parameter list> )
Turtle Drawings
- World Usage
- Picture Usage
- creation
- show
- explore
- write
- Color Usage
- Turtle Creation
- Turtle methods
- forward ()
- turn ()
- setPenColor()
- setPenWidth()
- penUp()
- penDown()
- getXPos()
- getYPos()
- moveTo()
- getHeading()
- setHeading()
-- Main.troy - 2015-02-17
Topic revision: r2 - 2015-02-17 - 16:50:59 - Main.troy