Here's a review sheet for the second test. The ommission of a topic does not mean it is not on the test. You are responsible for class lectures 00-12, homework assignments 1-4 (plus reading up to 4.1), all of lab1, and the Y86 ISA.
You probably want to look over review sheet #1.
int len1 (int a[]) {
int len;
for (len = 0; a[len]; len++)
;
return len;
}