CS 101 - 10/23/12 Exam 1 on Counter in Back of Lecture room Exam 1 Results Count: 95 Min: 34 Max: 99 Ave: 73.56 Median: 75 St.Dev: 15.05 Variance: 226.42 90's: 14 80's: 24 70's: 22 60's: 15 50's: 14 40's: 3 30's: 3 Midterm Grades: Used Lab 1-6: (2% per lab) Project 1: (7.5%) Exam 1: (15%) Maximum Percent: 34.5% Your Percent / Maximum Percent ==> some value in range from 100% to 0% A cutoff: 90% B cutoff: 80% C cutoff: 70% D cutoff: 60% This is Advising Sign-up Week Advising for Spring 2013 Semester is next week Project 2 is Due Tonight ================================== More on else if If we have more that 2 choices, we can use "else-if" clauses if ( ) { ; } else if ( ) { ; } else if ( ) { ; } else { ; } This is the same as: If we have more that 2 choices, we can use "else-if" clauses if ( ) { ; } else { if ( ) { ; } else { if ( ) { ; } else { ; } } }