CSCD210

Your progress

Every count on this page is worked out from the record this browser keeps. Nothing here was sent anywhere, and nothing here is a score anyone else can see.

The record in this browser has not been read yet. The map below is what the course covers, and the counts fill in once it loads.

Everything this course covers

Arrays & Sequences

  1. Array concept

  2. Array declaration and creation

  3. Array access and length

  4. Traditional for loop traversal

  5. Enhanced for loop traversal

  6. Arrays as parameters

  7. Common array algorithms

  8. Linear search

  9. Binary search

  10. Selection sort

  11. Insertion sort

  12. Arraylist basics

  13. 2D arrays

  14. Parallel arrays anti pattern

File I/O & Exceptions

  1. Why file I/O

  2. The File class

  3. Scanner on file

  4. Line vs token input

  5. Loop until end of file

  6. Printstream and printwriter

  7. The throwable hierarchy

  8. Try catch syntax

  9. Finally block

  10. Try with resources

  11. Throws on main

  12. Throwing exceptions yourself

  13. The count-allocate-fill pattern