Classwork Summary ------------------- COURSES COMPLETED CREDITS GRADE --------------------------------------------------------------------------- ACCT 201 - Principles of Financial Accounting 3 C ACCT 202 - Principles of Managerial Accounting 3 C ANTH 250 - The Rise of Civilization 3 A ART 160 - Art Appreciation 3 B AS 300 - Elementary Statistics 3 C AS 308 - Intermediate Statistics 3 B ASTR 103 - Intro Astronomy I 4 C BA 325 - Corporate Finance 3 B BA 335 - Management Principles and Practices 3 A BA 343 - Principles of Marketing 3 A BA 377 - Operations Management 3 A CS 101 - Introduction to Data Processing 3 B CS 107 - Pascal Programming (3) (D) CS 107 - Pascal Programming 3 A CS 207 - C Programming - AUDIT CS 210 - Software and Hardware Concepts 3 C CS 215 - COBOL Program Development I 3 B CS 216 - COBOL Program Development II 3 B CS 315 - Systems Analysis I 3 A CS 316 - Systems Analysis II 3 A CS 330 - Data Structures and Algorithms 3 C CS 360 - Database Program Development 3 B CS 401 - Software Engineering 3 A CS 414 - Information Systems Planning and Management 3 A CS 425 - Internship in Computing 3 A CS 442 - Data Communications and Networking 3 A CS 470 - Applied Software Development Project 3 A ECON 201 - Principles of Macroeconomics 3 B ECON 202 - Principles of Microeconomics 3 A ENGL 121 - Introduction to Literature 3 B ENGL 201 - Masterpieces of World Literature I 3 B ENGL 202 - Masterpieces of World Literature II 3 A ENGL 211 - Intermediate Expos. with Readings in Lit. 3 B ENGL 260B - Introduction to Creative Writing : Poetry 3 A ENGL 312 - Advanced Technical Writing 3 A ENGL 424 - Shakespeare 3 A GEOL 111 - Physical Geology 4 A HIST 101 - Western Civilization I 3 A HIST 102 - Western Civilization II 3 A HIST 244P - History of Film: The Disney Studios 3 A LING 101 - The Nature of Language 3 A MATH 107 - College Algebra 3 A MATH 108 - Trigonometry 3 A MATH 200 - Calculus I 4 C MATH 270 - Applied Finite Math for the Manag. Sci. 3 B MATH 272 - Applied Calculus for the Manag. Sci. 3 A PHIL 101 - Introduction to Logic 3 A PHIL 201 - Introduction to Philosophy 3 A PHIL 211 - History of Philosophy I 3 A PHIL 212 - History of Philosophy II 3 A PHIL 301 - Ethics 3 B PHIL 310 - Philosophy of Love 3 B PSY 111 - General Psychology 3 A PSY 265 - Abnormal Psychology 3 A SOC 101 - Introduction to Sociology 3 A SPAN 102 - Elementary Spanish II 3 A SPCH 111 - Fundamentals of Oral Communication 3 A ------------- 52 classes @ 3 credits + 3 classes at 4 credits = 168 57 classes - 1 audit - 1 replace = 55 classes [0D x 1] + [7C x 2] + [14B x 3] + [34A x 4] 0 14 42 136 = 192 grade points Grade points (192) / classes completed (55) .................. 3.491 G.P.A. Upper division CS credits ........... 27 Upper division total credits ........ 57 Catalog: 1990 --------------------------------------------------------------------------- Classes for which credit was given because of SAT or AP test scores: ENGL 111 - Methods of Written Communication 3 --- HIST 131 - American History I 3 --- HIST 132 - American History II 3 --- ------------- Total credits earned or credited = 180 --------------------------------------------------------------------------- Class for which credit was NOT given because I really screwed up AP Calc: MATH 200 - Calculus I 4 --- --------------------------------------------------------------------------- Courses left -- needed to graduate with CS/IS degree: NONE - woohoo! --------------------------------------------------------------------------- calculation snippets: for grade in A B C D; do cat classes.txt | egrep "$grade$" | wc -l; done egrep " [0-9] " classes.txt | egrep -v "=|\-\-\-" | wc -l for item in `cat classes.txt | egrep " [0-9][0-9][0-9] "|egrep -v "="|awk '{print $1}' | sort -u `; do /usr/bin/echo "$item:\t\c"; egrep "^$item" classes.txt | wc -l; done