CS 115 Reading: Week 6
Indefinite (while) loops
By the end of Week 6, you should be comfortable with:
- Tracing the execution of a while loop
- Writing simple while loops
- Deciding when to use for vs. while
Suggested readings:
String processing
By the end of Week 6, you should be comfortable with:
- Accessing individual characters of a string using indexing (e.g. name[1])
- Determining and using the length of a string
- Using the concatenation (+) and repetition (*) operators on strings
- Writing a loop to access each character of a string
Suggested readings for the basics:
Suggested readings to take it to the next level: