Canisius College Computer Science Department Computer Programming for Science CSC107 & CSC107L Fall 2014

Size: px
Start display at page:

Download "Canisius College Computer Science Department Computer Programming for Science CSC107 & CSC107L Fall 2014"

Transcription

1 Canisius College Computer Science Department Computer Programming for Science CSC107 & CSC107L Fall 2014 Class: Tuesdays and Thursdays, 10:00-11:15 in Science Hall 005 Lab: Tuesdays, 9:00-9:50 in Science Hall 005 Instructor: Jonathan P. Bona, Ph.D. Course web site: Office: Science Hall 1029B Office hours: Tuesdays 11:15-12:15, Thursdays 9:00-9:50 Course Description This course is an introduction to computer science and computer programming for science and preengineering majors. Students learn to write, test, and debug software using the C programming language and related tools. Examples and exercises focus on scientific and engineering problemsolving and applications. Credit Hours: 4 total (class + lab) Required Text Engineering Problem Solving with C, 4 th Edition, by Delores M. Etter. ISBN-13: Recommended Supplemental Texts The C Programming Language, 2 nd Edition, by Brian W. Kernighan and Dennis M. Ritchie. ISBN-13: C in a Nutshell, by Peter Prinz and Tony Crawford. ISBN-13: Student Learning Outcomes At the completion of this course, students will be able to develop a computational solutions to problems over the entire software lifecycle, including: Analyzing a problem statement and designing an algorithm to solve the problem, Implementing solutions using the C programming language and supporting tools (basic command line, text editor, compiler, etc), and Testing and debugging programs Students will understand the foundations of computing, including: Basics of computer architecture, Boolean logic, and 1

2 Design and basic analysis of algorithms Course Grade Components Final grades will be made up of the following components, discussed in more detail below. Quizzes 10% Homework & In-class Exercises 15% Programming Assignments 25% Lab Mastery Exam 15% Midterm Exam 15% Final Exam 20% Total 100 % Note that the final grade mixes elements of the lecture and lab. For purposes of final grades the lecture and lab will be treated as a single four credit course. Letter Grade Calculation: Final grades at the end of the semester will be converted to letter grades as follows: 95 A 77 C+ 90 A- 73 C 87 B+ 70 C- 83 B 60 D 80 B- 59 F Web Resources The course web page at includes a schedule of topics and other resources. It will be updated as the semester progresses to provide specifics: reading assignments, programming assignments, lecture slides, and more. Assignments will also be announced in class and lab. Grades, solutions to exercises, and other non-public information will be distributed via Desire2Learn: Office Hours Students are encouraged to attend office hours in order to discuss course material or get help with assignments. Any changes from the days or times listed above will be announced in class and by . Don t Panic Please contact the instructor if you are having difficulty with the course material, are worried about falling behind, or have other concerns or struggles. It is hard for your instructor to know what s going on if you don t take this first step. Sometimes it will help just to have a topic explained in a different way. The Computer Science department provides tutors who can also help with the material for this course. General tutoring help is available from Tutoring Center in Old Main

3 Grade Components Quizzes There will be short quizzes at the beginning of many lectures (1-2 per week). These will not necessarily be announced in advance. Your lowest quiz grade will be dropped. In-class Exercises Short in-class exercises to be completed in small groups will give you a chance to work through the material with other students and test your understanding. Homework Exercises Homework assignments (about one per week) will allow you to develop and demonstrate your understanding of the material. Your lowest homework grade will be dropped. Programming Assignments We will work on programming assignments in lab each week. The instructor will use part of the lab time to introduce and explain the assignment. The remaining time will be spent working on the assignment. These assignments will often require additional work outside the one hour of weekly lab time. Most programming assignments will be due within a week, though we may have a few larger multi-week programming assignments as well. Midterm Exam We will have one midterm exam (tentatively scheduled for October 16th) which will test your knowledge and understanding of topics covered up to that point. Lab Mastery Exam In the lab mastery exam, given during finals week, you will be asked to build one or more complete working programs to demonstrate mastery of the course material. Final Exam The final exam will be held during finals week. It will be cumulative. Course Policies Attendance and Participation Students are expected to attend all classes and labs, and to read assigned material before each class. Come prepared to participate by asking and answering questions, joining in discussions, and participating in in-class exercises. Attendance will be taken regularly at the beginning of class. Let the instructor know in advance if you plan to be absent. Much of the material in this course builds on earlier material, so it can be difficult to catch up after even one absence. We will have frequent graded quizzes and in-class exercises that cannot be made up if they are missed. Programming assignments will be introduced and explained in labs. Any student who is absent four or more times will be asked to meet with the instructor to discuss the absences. Any student who reaches six absences will meet with the instructor again to discuss whether the student should withdraw from the course. Late or Missed Assignments Because we will often discuss solutions to assignments soon after they are due, late submissions for assignments will not be accepted. Make-up assignments will not be available except in case of a documented catastrophic occurrence that directly affects the student, for example, a serious illness. 3

4 Re-grading If you believe a mistake has been made in any graded material, and would like the grade reconsidered, you must approach the instructor about it within a week of the date on which the grade was given. Academic Integrity Plagiarism and other forms of academic misconduct will not be tolerated. The purpose of assignments is for you to personally practice and work through the course material. All work you submit must be your own. Unless otherwise noted, all homeworks, lab exercises, programming assignments, and other assignments are to be completed individually. It is your responsibility to be familiar with the College s Code of Academic Integrity: Note that possible consequences of violations include failing the course, academic probation, suspension, or even expulsion. Students are encouraged to study together and discuss course material, including the general ideas behind assignments. When it comes time to actually work on an assignment, each student should be working separately without ever looking at another student s code or asking another student what to type or how to do the assignment. If you have any doubt about what s acceptable, it s better err on the side of caution, or to ask your instructor than to find out the hard way. Students with Disabilities The Office of Disability Support Services serves as the College s advocate for students with disabilities and is responsible for arranging necessary support. Any student who needs academic accommodations should contact the office at (716) If you have a disability for which accommodations are necessary, please also inform the instructor. For more information about the DSS Office or academic accommodations, please visit or call Special Circumstances Students are encouraged to inform the instructor in confidence of any special circumstances that may impact their progress in the course. 4

5 Schedule of Topics The following is a tentative schedule of topics. During the semester we may spend more or less time than planned on some topics, or decide to treat topics in a slightly different order. The dynamic version of this schedule at will be updated as we progress through the semester. Week Dates Topics Reading 1 Aug. 26th, 28th Introduction & history Ch. 1 2 Sept. 2nd, 4th Computer architecture; boolean logic; C: variables, statements, input/output Ch. 1, 2 3 Sept. 9th, 11th C selection structures: if Ch. 2, 3 4 Sept. 16th, 18th More Selection. Repetition: loop structures in C Ch. 3 5 Sept. 23rd, 25th More loops; Data files Ch. 3 6 Sept. 30th, Oct. 2nd Modularity and functions Ch. 4 7 Oct. 7th, 9th More functions, and recursion Ch. 4 8 Oct. 14th, 16th Midterm exam 9 Oct. 21st, 23rd Arrays Ch Oct 28th, 30th Using arrays: search & sort, complexity Multidimensional arrays; vectors and matrices Ch Nov. 4th, 6th Pointers Ch Nov. 11th, 13th Pointers, memory allocation, and strings Ch Nov. 18th, 20th Structs Ch Nov 25th, 27th Functions, arrays, and structs; dynamic data structures Ch Dec. 2nd, 4th C++; Advanced topics in scientific computing; Review Ch. 8 Dec. 8th - 12th Finals Week 5

CSC 241 Introduction to Computer Science I

CSC 241 Introduction to Computer Science I 1 Syllabus CSC 241 Introduction to Computer Science I Course Management System: D2L (https://d2l.depaul.edu) INSTRUCTOR INFORMATION Jean D. Hop Building, 243 S. Wabash Ave, Room 634 Email: csc241hop@gmail.com

More information

GET 114 Computer Programming Course Outline. Contact: craig.west@rdc.ab.ca Office Hours: TBD 403.342.3415 (or by appointment)

GET 114 Computer Programming Course Outline. Contact: craig.west@rdc.ab.ca Office Hours: TBD 403.342.3415 (or by appointment) GET 114 Computer Programming Course Outline Electrical Engineering Technology Fall 2015 Instructor: Craig West Office: 2915-11 Contact: craig.west@rdc.ab.ca Office Hours: TBD 403.342.3415 (or by appointment)

More information

CS 1361-D10: Computer Science I

CS 1361-D10: Computer Science I CS 1361-D10: Computer Science I Instructor Name: Lopamudra Roychoudhuri Instructor Phone Number: (325) 486-5448 Instructor email: lroychoudhuri@angelo.edu Instructor Office: MCS 205E Class Times: Online,

More information

CS 1340 Sec. A Time: TR @ 8:00AM, Location: Nevins 2115. Instructor: Dr. R. Paul Mihail, 2119 Nevins Hall, Email: rpmihail@valdosta.

CS 1340 Sec. A Time: TR @ 8:00AM, Location: Nevins 2115. Instructor: Dr. R. Paul Mihail, 2119 Nevins Hall, Email: rpmihail@valdosta. CS 1340 Sec. A Time: TR @ 8:00AM, Location: Nevins 2115 Course title: Computing for Scientists, Spring 2015 Instructor: Dr. R. Paul Mihail, 2119 Nevins Hall, Email: rpmihail@valdosta.edu Class meeting

More information

LOGOM 3300: Business Statistics Fall 2015

LOGOM 3300: Business Statistics Fall 2015 LOGOM 3300: Business Statistics Fall 2015 The science of statistics is the chief instrumentality through which the progress of civilization is now measured and by which its development hereafter will be

More information

NEW YORK CITY COLLEGE OF TECHNOLOGY/CUNY Computer Systems Technology Department. COURSE: CST2403 C++ Programming Part 1 ( 4 hours, 3 credits )

NEW YORK CITY COLLEGE OF TECHNOLOGY/CUNY Computer Systems Technology Department. COURSE: CST2403 C++ Programming Part 1 ( 4 hours, 3 credits ) 1 NEW YORK CITY COLLEGE OF TECHNOLOGY/CUNY Computer Systems Technology Department COURSE: CST2403 C++ Programming Part 1 ( 4 hours, 3 credits ) INSTRUCTOR: OFFICE: E-MAIL: PHONE: OFFICE HOURS: Course Description:

More information

CENTRAL TEXAS COLLEGE ITSE 2459 ADVANCED COMPUTER PROGRAMMING C# Semester Hours Credit: 4 INSTRUCTOR: OFFICE HOURS:

CENTRAL TEXAS COLLEGE ITSE 2459 ADVANCED COMPUTER PROGRAMMING C# Semester Hours Credit: 4 INSTRUCTOR: OFFICE HOURS: CENTRAL TEXAS COLLEGE ITSE 2459 ADVANCED COMPUTER PROGRAMMING C# Semester Hours Credit: 4 INSTRUCTOR: OFFICE HOURS: I. INTRODUCTION A. This course presents advanced programming techniques including file

More information

CS 261 C and Assembly Language Programming. Course Syllabus

CS 261 C and Assembly Language Programming. Course Syllabus CS 261 C and Assembly Language Programming Course Syllabus Spring 2016 Lecture: Tuesdays and Thursdays 9:10AM to 10:25 in VSCI 255 3 Semester Hours Instructor: Dick Lang, Ph.D. dick_lang@vancouver.wsu.edu

More information

Brazosport College Syllabus for PSYC 2301 General Psychology

Brazosport College Syllabus for PSYC 2301 General Psychology Brazosport College Syllabus for PSYC 2301 General Psychology Instructor: Cassandra D. Gonzalez Office Hours: Monday-Thursday 1:00-2:00 pm Office Phone: 979.230.3667 Other times by appointment Office Location:

More information

ISB 205 Management Software Fall 2014 Semester

ISB 205 Management Software Fall 2014 Semester Instructor Dr. L. Volonino, CISSP, ACFE Contact Information Tower 504 and via D2L ISB 205 Management Software Fall 2014 Semester There is a discussion forum in D2L for questions. Other communication options

More information

BUS 1950-002-008 Computer Concepts and Applications for Business Fall 2012

BUS 1950-002-008 Computer Concepts and Applications for Business Fall 2012 BUS 1950-002-008 Computer Concepts and Applications for Business Fall 2012 Instructor: Contact Information: Susan Kling Office: 4505 Lumpkin Hall Phone: 217-581-8547 Email: SJKling@eiu.edu Course Website:

More information

University of St. Thomas ENGR 230 ---- Digital Design 4 Credit Course Monday, Wednesday, Friday from 1:35 p.m. to 2:40 p.m. Lecture: Room OWS LL54

University of St. Thomas ENGR 230 ---- Digital Design 4 Credit Course Monday, Wednesday, Friday from 1:35 p.m. to 2:40 p.m. Lecture: Room OWS LL54 Fall 2005 Instructor Texts University of St. Thomas ENGR 230 ---- Digital Design 4 Credit Course Monday, Wednesday, Friday from 1:35 p.m. to 2:40 p.m. Lecture: Room OWS LL54 Lab: Section 1: OSS LL14 Tuesday

More information

CSC 314: Operating Systems Spring 2005

CSC 314: Operating Systems Spring 2005 CSC 314: Operating Systems Spring 2005 Instructor: Lori Carter lcarter@ptloma.edu (619) 849-2352 Office hours: MWF TTh 11:00 a.m. 12:00 p.m. 1:15 2:15 p.m 10:00-11:30 a.m. Texts: Silbershatz et.al, Operating

More information

BRAZOSPORT COLLEGE LAKE JACKSON, TEXAS SYLLABUS ITSE 1432 INTRODUCTION TO VISUAL BASIC.NET PROGRAMMING

BRAZOSPORT COLLEGE LAKE JACKSON, TEXAS SYLLABUS ITSE 1432 INTRODUCTION TO VISUAL BASIC.NET PROGRAMMING BRAZOSPORT COLLEGE LAKE JACKSON, TEXAS SYLLABUS ITSE 1432: INTRODUCTION TO VISUAL BASIC.NET PROGRAMMING COMPUTER TECHNOLOGY & OFFICE ADMINISTRATION DEPARTMENT CATALOG DESCRIPTION ITSE 1432 INTRODUCTION

More information

Los Angeles Pierce College. SYLLABUS Math 227: Elementary Statistics. Fall 2011 T Th 4:45 6:50 pm Section #3307 Room: MATH 1400

Los Angeles Pierce College. SYLLABUS Math 227: Elementary Statistics. Fall 2011 T Th 4:45 6:50 pm Section #3307 Room: MATH 1400 Los Angeles Pierce College SYLLABUS Math 227: Elementary Statistics Fall 2011 T Th 4:45 6:50 pm Section #3307 Room: MATH 1400 Instructor: Pauline Pham Office hours: T Th: 4:00 4:35 PM, Room Math 1409X

More information

EASTERN WYOMING COLLEGE Business Administration

EASTERN WYOMING COLLEGE Business Administration EASTERN WYOMING COLLEGE Business Administration COURSE NAME... Personal Finance COURSE NUMBER...BADM 1030 CREDIT... 3 credits SEMESTER... Fall 2013 LOCATION... online delivery INSTRUCTOR... Jennifer Minks

More information

Introduction to Computer Programming Course Syllabus Fall 2015

Introduction to Computer Programming Course Syllabus Fall 2015 Course Information Course Syllabus Fall 2015 Instructor: Dr. Mike Jochen Phone: 570.422.3036 Email: mjochen@esu.edu Office: 337 SCITECH Building Office Hours: Mon/Weds 5:30 7:00 p.m. Tues/Thurs 11 a.m.

More information

Course title: Management Information Systems Fall 2010 Course number: CRN: Location: Meeting day: Meeting time:

Course title: Management Information Systems Fall 2010 Course number: CRN: Location: Meeting day: Meeting time: Course title: Management Information Systems Fall 2010 Course number: B AD 64042 section 001 CRN: 11056 Location: BSA 100 Meeting day: M Meeting time: 6:15-8:55 PM Instructor Information Name: Janet Formichelli,

More information

ISM 4113: SYSTEMS ANALYSIS & DESIGN

ISM 4113: SYSTEMS ANALYSIS & DESIGN GENERAL INFORMATION: ISM 4113: SYSTEMS ANALYSIS & DESIGN COURSE SYLLABUS Class Times: Tuesday, Thursday 9:35 11:30 AM Class Location: HVNR 240 Professor: Dr. Aditi Mukherjee Office; Phone: STZ 360, 39-20648

More information

Education: P.h.D. Candidate (Santa Clara University, California) M.S. in Computer Engineering (Santa Clara University, California)

Education: P.h.D. Candidate (Santa Clara University, California) M.S. in Computer Engineering (Santa Clara University, California) Instructor: Professor Neena Kaushik Education: P.h.D. Candidate (Santa Clara University, California) M.S. in Computer Engineering (Santa Clara University, California) M.S. in Biomedical Engineering (Northwestern

More information

ISM 4210: DATABASE MANAGEMENT

ISM 4210: DATABASE MANAGEMENT GENERAL INFORMATION: ISM 4210: DATABASE MANAGEMENT COURSE SYLLABUS Class Times: Tuesday, Thursday 9:35 11:30 AM Class Location: HVNR 240 Professor: Dr. Aditi Mukherjee Office; Phone: STZ 360, 39-20648

More information

Canisius College Richard J. Wehle School of Business Department of Marketing & Information Systems Spring 2015

Canisius College Richard J. Wehle School of Business Department of Marketing & Information Systems Spring 2015 Canisius College Page 1 of 6 Canisius College Richard J. Wehle School of Business Department of Marketing & Information Systems Spring 2015 Course: MBA 668 Information Technology Tools for Supply Chain

More information

AUSTIN COMMUNITY COLLEGE DEPARTMENT OF COMPUTER STUDIES AND ADVANCED TECHNOLOGY

AUSTIN COMMUNITY COLLEGE DEPARTMENT OF COMPUTER STUDIES AND ADVANCED TECHNOLOGY AUSTIN COMMUNITY COLLEGE DEPARTMENT OF COMPUTER STUDIES AND ADVANCED TECHNOLOGY Course Syllabus: COSC 1320 C++ / C Programming (CIS 2003) Section 33024 Lecture 021 at Northridge Campus Spring 2006 Instructor:

More information

Introduction to Computer Programming Course Syllabus Fall 2012

Introduction to Computer Programming Course Syllabus Fall 2012 Course Syllabus Fall 2012 Course Information Instructor: Dr. Mike Jochen Phone: 570.422.3036 Email: mjochen@esu.edu Office: 337 SCITECH Building Office Hours: Tues/Thurs 12:45 1:45 p.m. Weds 9:30 a.m.

More information

MATHEMATICAL TOOLS FOR ECONOMICS ECON 1078-002 FALL 2011

MATHEMATICAL TOOLS FOR ECONOMICS ECON 1078-002 FALL 2011 MATHEMATICAL TOOLS FOR ECONOMICS ECON 1078-002 FALL 2011 Instructor: Hakon Skjenstad Class Time: M, W, F, 2:00-2:50pm Classroom: HUMN 1B80 Email: hakon.skjenstad@colorado.edu Course Website: CULearn Office:

More information

South Plains College. MATH 2320 Differential Equations Section 001, M W 8 9:15 am Math Bldg., Rm. 105

South Plains College. MATH 2320 Differential Equations Section 001, M W 8 9:15 am Math Bldg., Rm. 105 South Plains College MATH 2320 Differential Equations Section 001, M W 8 9:15 am Math Bldg., Rm. 105 Instructor: Miss S. Davis Office Hours: Office: 103 MATH Bldg. Phone: (806) 894 9611 ext. 2699 E-mail

More information

Management 540-001 Financial Accounting I Fall 2015. Intermediate Accounting by Spiceland, Sepe, and Nelson, 8th edition.

Management 540-001 Financial Accounting I Fall 2015. Intermediate Accounting by Spiceland, Sepe, and Nelson, 8th edition. Management 540-001 Financial Accounting I Fall 2015 Instructor: Shihong Li Office: ASM 2114 Phone: 277-6176 Office Hours: M/W, 2:45-3:45 pm, and by appointment. E-mail: shli@unm.edu Required Text: Intermediate

More information

COURSE OUTLINE. The course description is online @ http://camosun.ca/learn/calendar/current/web/biol.html

COURSE OUTLINE. The course description is online @ http://camosun.ca/learn/calendar/current/web/biol.html School of Arts & Science BIOLOGY DEPARTMENT BIOL 152 Anatomy/Physiology 1: Nursing Fall 2014 COURSE OUTLINE The course description is online @ http://camosun.ca/learn/calendar/current/web/biol.html Ω Please

More information

BUS 2100 Business Communication Fall 2006

BUS 2100 Business Communication Fall 2006 BUS 2100 Business Communication Fall 2006 Instructor: Ms. Susan Terkelsen Office Number: Milner 173 Meeting Time: T/R, 8:30 Section 1, 11:00 Section 2, Milner 142 Office Phone: 766-7918 Office Hours: M/W

More information

Grading. The grading components are as follows: Midterm Exam 25% Final Exam 35% Problem Set 10% Project Assignment 20% Class Participation 10%

Grading. The grading components are as follows: Midterm Exam 25% Final Exam 35% Problem Set 10% Project Assignment 20% Class Participation 10% MIS 350: Business Systems Analysis Course Syllabus for Fall Quarter 2015 Tues. 6:00 p.m. 9:15 p.m. Rm TBA Instructor: Yujong Hwang, Ph.D. Office: Room 6039 DPC, School of Accountancy & MIS Phone: 312-362-5487

More information

Biology 360 Genetics Lecture Syllabus and Schedule, Fall 2012 Tentative

Biology 360 Genetics Lecture Syllabus and Schedule, Fall 2012 Tentative Biology 360 Genetics Lecture Syllabus and Schedule, Fall 2012 Tentative Dr. David Keller Office: Holt 318 Lab: Holt 301 Office Hrs:10-11 am Ph: 898-5040 Dr. Jeff Bell Office: Holt 205 Ph: 898-5356 Prerequisites:

More information

CS 425 Software Engineering. Course Syllabus

CS 425 Software Engineering. Course Syllabus Department of Computer Science and Engineering College of Engineering, University of Nevada, Reno Fall 2013 CS 425 Software Engineering Course Syllabus Lectures: Instructor: Office hours: Catalog description:

More information

PSY 2012 General Psychology Sections 4041 and 1H85

PSY 2012 General Psychology Sections 4041 and 1H85 PSY 2012 General Psychology Sections 4041 and 1H85 Professor: Nicole Dorey Office: PSY 355 Office hours: Monday 10:40-11:40 am Phone: (352) 273-2188 Teaching Assistants: Nathan Hall Ray Joslyn Sarah Slocum

More information

FALL 2012. Monday/Wednesday, 9:00-10:15, IT167, Class # 31388. Department of Psychology Indiana University-Purdue University Indianapolis

FALL 2012. Monday/Wednesday, 9:00-10:15, IT167, Class # 31388. Department of Psychology Indiana University-Purdue University Indianapolis PSY B110 Introduction to Psychology FALL 2012 Monday/Wednesday, 9:00-10:15, IT167, Class # 31388 Department of Psychology Indiana University-Purdue University Indianapolis Instructor Teaching Assistants

More information

02-201: Programming for Scientists

02-201: Programming for Scientists 1. Course Information 1.1 Course description 02-201: Programming for Scientists Carl Kingsford Fall 2015 Provides a practical introduction to programming for students with little or no prior programming

More information

CS 425 Software Engineering

CS 425 Software Engineering Department of Computer Science and Engineering College of Engineering, University of Nevada, Reno Fall 2009 CS 425 Software Engineering Lectures: Instructors: Office hours: Catalog description: Course

More information

CS135 Computer Science I Spring 2015

CS135 Computer Science I Spring 2015 CS135 Computer Science I Spring 2015 Instructor: Laura Pike Email: laura.pike@gbcnv.edu Phone: 775-753-2288 Office: HTC 131 Office Hours: Monday 9:00 11:30 am Thursday 1:00-3:30 pm Textbooks: ISBN: 978-0470927137,

More information

PSY B358 Introduction to Industrial/Organizational (I/O) Psychology Fall 2012

PSY B358 Introduction to Industrial/Organizational (I/O) Psychology Fall 2012 PSY B358 Introduction to Industrial/Organizational (I/O) Psychology Fall 2012 Find a job you like and you add five days to every week. -H. Jackson Brown Contact Information Professor: Office: Email: Office

More information

General Psychology. Course Syllabus

General Psychology. Course Syllabus COURSE TITLE General Psychology General Psychology Course Syllabus COURSE NUMBER PSY 2012 PREREQUISITES English Composition I with a grade of C, or ACT Reading 018 and ACT English 017, or CPT-R 083 and

More information

ABNORMAL PSYCHOLOGY (PSYCH 238) Psychology Building, Rm.31 Spring, 2010: Section K. Tues, Thurs 1:45-2:45pm and by appointment (schedule via email)

ABNORMAL PSYCHOLOGY (PSYCH 238) Psychology Building, Rm.31 Spring, 2010: Section K. Tues, Thurs 1:45-2:45pm and by appointment (schedule via email) ABNORMAL PSYCHOLOGY (PSYCH 238) Psychology Building, Rm.31 Spring, 2010: Section K Instructor: Mikhail Lyubansky, Ph.D. Email: Lyubansk@illinois.edu Office: 723 Psychology Building Phone: 333-7740 Mailbox:

More information

PSYCH 3510: Introduction to Clinical Psychology Fall 2013 MWF 2:00pm-2:50pm Geology 108

PSYCH 3510: Introduction to Clinical Psychology Fall 2013 MWF 2:00pm-2:50pm Geology 108 PSYCH 3510: Introduction to Clinical Psychology Fall 2013 MWF 2:00pm-2:50pm Geology 108 Instructor: Alex R. Dopp, M.A. Email: ard343@mail.mizzou.edu Office: Psychology Building 221 Office hours: by appointment

More information

COURSE: PSYC 1101 (11) Introduction to Psychology TIME AND DAYS: Tuesdays & Thursdays; 1:00 2:15 pm CLASSROOM: Science Center 1405 (and computer lab)

COURSE: PSYC 1101 (11) Introduction to Psychology TIME AND DAYS: Tuesdays & Thursdays; 1:00 2:15 pm CLASSROOM: Science Center 1405 (and computer lab) Page 1 COURSE: PSYC 1101 (11) Introduction to Psychology TIME AND DAYS: Tuesdays & Thursdays; 1:00 2:15 pm CLASSROOM: Science Center 1405 (and computer lab) INSTRUCTOR: Dr. John R. Kraft OFFICE HOURS:

More information

SPC Common Course Syllabus for PSYC 2316 Psychology of Personality

SPC Common Course Syllabus for PSYC 2316 Psychology of Personality SPC Common Course Syllabus for PSYC 2316 Psychology of Personality Department: Behavioral Sciences Discipline: Psychology Course Number: PSYC 2301 Course Title: Psychology of Personality Credit: 3 Lecture,

More information

Office: D-116-9. Instructor: Vanessa Jones. Phone: (714) 628-4948. Office Hours: Monday & Wednesday 1:30pm-2:30pm. Email: Jones Vanessa@sccollege.

Office: D-116-9. Instructor: Vanessa Jones. Phone: (714) 628-4948. Office Hours: Monday & Wednesday 1:30pm-2:30pm. Email: Jones Vanessa@sccollege. Fall Semester 2015 Santiago Canyon College: Mathematics & Sciences Division (Room SC-210) MATH 80: Intermediate Algebra (Section Number 10247) Tuesday & Thursday 10:30 am-1:00pm (Room SC-110) Instructor:

More information

22-MGMT-3080 (003) Management Lindner College of Business University of Cincinnati Fall 2015

22-MGMT-3080 (003) Management Lindner College of Business University of Cincinnati Fall 2015 22-MGMT-3080 (003) Management Lindner College of Business University of Cincinnati Fall 2015 Instructor Phone E-mail Elaine Hollensbe, Ph.D. 518 Lindner Hall (513) 556-7122 (office) elaine.hollensbe@uc.edu

More information

4ECE 320 Signals and Systems II Department of Electrical and Computer Engineering George Mason University Fall, 2015

4ECE 320 Signals and Systems II Department of Electrical and Computer Engineering George Mason University Fall, 2015 ECE 320 1 Fall, 2015 4ECE 320 Signals and Systems II Department of Electrical and Computer Engineering George Mason University Fall, 2015 Class Meeting Information Day and Time: Tuesday and Thursday, 4:30

More information

Introduction to Sociology Online Course Syllabus SOC 2301 D30 CRN 10144 Fall 2015 Angelo State University

Introduction to Sociology Online Course Syllabus SOC 2301 D30 CRN 10144 Fall 2015 Angelo State University Introduction to Sociology Online Course Syllabus SOC 2301 D30 CRN 10144 Fall 2015 Angelo State University Jennifer L. Newman-Shoemake BS, MS jennifer.newman@angelo.edu COURSE INFORMATION: This is an online

More information

How To Teach C++ Data Structure Programming

How To Teach C++ Data Structure Programming UTSA EE 3223 - C++ Data Structures Syllabus Fall 2015 Part A - Course Outline Catalog Description: 3 hours credit. Review of C/C++ non-object oriented programming concepts. Object-oriented programming

More information

CS 649 Database Management Systems. Fall 2011

CS 649 Database Management Systems. Fall 2011 SCHOOL OF BUSINESS, PUBLIC ADMINISTRATION AND INFORMATION SCIENCES LONG ISLAND UNIVERSITY, BROOKLYN CAMPUS DEPARTMENT OF COMPUTER SCIENCE CS 649 Database Management Systems Fall 2011 Course Schedule: Thursday

More information

MKT395A: SOCIAL MEDIA BRANDING & PR

MKT395A: SOCIAL MEDIA BRANDING & PR MKT395A: SOCIAL MEDIA BRANDING & PR SPRING 2015 Richard J. Wehle School of Business CANISIUS COLLEGE Instructor: Mark Yi-Cheon Yim, Ph.D. Email: yimy@canisius.edu Office: CT-404 Tel: 716-888-3264 Office

More information

Applied Network Security Course Syllabus Spring 2015

Applied Network Security Course Syllabus Spring 2015 Course Syllabus Spring 2015 Course Information Instructor: Dr. Mike Jochen Phone: 570.422.3036 Email: mjochen@esu.edu Office: 337 SCITECH Building Office Hours: Mon 5:15 7:00 p.m. Weds 5:45 7:00 p.m. Tues/Thurs

More information

CRJU 1150 - Introduction to Criminal Justice (CRN 20933) Course Syllabus Spring 2015

CRJU 1150 - Introduction to Criminal Justice (CRN 20933) Course Syllabus Spring 2015 CRJU 1150 - troduction to Criminal Justice (CRN 20933) Course Syllabus Spring 2015 TABLE OF CONTENTS PROFESSOR INFORMATION COURSE INFORMATION LEARNING OUTCOMES ATTENDANCE EMAIL CORRESPONDENCE STUDENT RESPONSIBILITIES

More information

University of Central Florida Rosen Campus

University of Central Florida Rosen Campus University of Central Florida Rosen Campus MAC 1105.0062/82889 -College Algebra (3 semester credit hour, Fall of 2008 ) Instructor: Susan Sun Nunamaker ACADEMIC CALENDAR August 25, 2008-Classes begin for

More information

Geology 110 Sect.1 Syllabus; Fall, 2015. GEOL110 Section 3 (3 credits) Fall, 2015 Physical Geology

Geology 110 Sect.1 Syllabus; Fall, 2015. GEOL110 Section 3 (3 credits) Fall, 2015 Physical Geology Geology 110 Sect.1 Syllabus; Fall, 2015 GEOL110 Section 3 (3 credits) Fall, 2015 Physical Geology Dr. Scott Werts Office: Sims 212A Course Classroom: Sims 201 Meeting Time: TTh 12:30-1:45 Email: wertss@winthrop.edu

More information

ISQS 3358 BUSINESS INTELLIGENCE FALL 2014

ISQS 3358 BUSINESS INTELLIGENCE FALL 2014 ISQS 3358 BUSINESS INTELLIGENCE FALL 2014 Instructor: Dr. Miguel. I. Aguirre-Urreta, Ph.D. Office: BA E322 Phone: 806.834.0765 Email: miguel.aguirre-urreta@ttu.edu Office Hours Tuesdays and Thursdays from

More information

Pol Sci 3510 Topics in American Politics: The Supreme Court

Pol Sci 3510 Topics in American Politics: The Supreme Court Pol Sci 3510 Topics in American Politics: The Supreme Court Fall 2011 TTh 4:00p.m. 5:30p.m., Seigle Hall L002 Instructor Susanne Schorpp Seigle Hall 250 314-935-9010 schorpp@wustl.edu Office Hours TWTh

More information

CENTRAL TEXAS COLLEGE ITSE 1302 COMPUTER PROGRAMMING. Semester Hours Credit: 4 INSTRUCTOR: OFFICE HOURS:

CENTRAL TEXAS COLLEGE ITSE 1302 COMPUTER PROGRAMMING. Semester Hours Credit: 4 INSTRUCTOR: OFFICE HOURS: CENTRAL TEXAS COLLEGE ITSE 1302 COMPUTER PROGRAMMING Semester Hours Credit: 4 INSTRUCTOR: OFFICE HOURS: I. INTRODUCTION A. This course is an introduction to computer programming using Visual Basic. Emphasis

More information

Colorado School of Mines Fall 2015 Principles of Corporate Finance EBGN 345-A

Colorado School of Mines Fall 2015 Principles of Corporate Finance EBGN 345-A Colorado School of Mines Fall 2015 Principles of Corporate Finance EBGN 345-A Instructor: Dr. Becky Lafrancois twitter: @economines Office: 110 Engineering Hall email: blafranc@mines.edu Office Phone:

More information

IST 385, Human Computer Interaction Fall semester, 2010

IST 385, Human Computer Interaction Fall semester, 2010 Missouri University of Science and Technology Department of Business and Information Technology COURSE: Course Prefix, Number, and Title: IST 385, Human Computer Interaction Meeting time: Tuesday/Thursday,

More information

ACCY 2001 Intro Financial Accounting Fall 2014

ACCY 2001 Intro Financial Accounting Fall 2014 ACCY 2001 Intro Financial Accounting Fall 2014 Class Section Day Time Location ACCY 2001-11 TR 03:45PM - 05:00PM DUQUES 152 ACCY 2001-16 TR 11:10AM - 12:25PM FUNGER 209 ACCY 2001-18 TR 09:35AM - 10:50AM

More information

Introduction to Programming System Design. CSCI 455x (4 Units)

Introduction to Programming System Design. CSCI 455x (4 Units) Introduction to Programming System Design CSCI 455x (4 Units) Description This course covers programming in Java and C++. Topics include review of basic programming concepts such as control structures,

More information

Management Information Systems 260 Web Programming Fall 2006 (CRN: 42459)

Management Information Systems 260 Web Programming Fall 2006 (CRN: 42459) Management Information Systems 260 Web Programming Fall 2006 (CRN: 42459) Class Time: 6:00 8:05 p.m. (T,Th) Venue: WSL 5 Web Site: www.pbvusd.net/mis260 Instructor Name: Terrell Tucker Office: BDC 127

More information

Math 830- Elementary Algebra

Math 830- Elementary Algebra Math 830- Elementary Algebra Tue, Thur: 1:00pm-2:45pm Instructor: Dr. Lemee Nakamura Room: 3507 Office: 3621 Section 1979 Phone: 760-757-2121 ext.6219 Spring 2010 Email: lnakamura@miracosta.edu Office

More information

A. COURSE DESCRIPTION

A. COURSE DESCRIPTION PROVIDENCE COLLEGE 473.24 Introductory Managerial Accounting 3 credit hours Professor: Office: Website: Classes: Office hours: Jeremy Funk, MBA, PhD Candidate jeremy.funk@prov.ca 2H22 Providence Student

More information

Florida Gulf Coast University Lutgert College of Business Marketing Department MAR3503 Consumer Behavior Spring 2015

Florida Gulf Coast University Lutgert College of Business Marketing Department MAR3503 Consumer Behavior Spring 2015 Course name: Class schedule: Course mode: Classroom: Lutgert Hall, Room 2208 CRN: 10141 Consumer Behavior Tuesday & Thursday, 9:30 AM 10:45 AM On campus, face-to-face meetings Credit hours: 3 Final exam:

More information

Introduction to Computer Forensics Course Syllabus Spring 2012

Introduction to Computer Forensics Course Syllabus Spring 2012 Course Information Course Syllabus Spring 2012 Instructor: Dr. Mike Jochen Phone: 570.422.3036 Email: mjochen@esu.edu Office: 337 SCITECH Building Office Hours: Tues/Thurs 11 a.m. noon Weds 9 a.m. noon

More information

FINC 332 Section 102, Business Finance, Fall 2014 M, W, F Corboy Room 322

FINC 332 Section 102, Business Finance, Fall 2014 M, W, F Corboy Room 322 Professor Hae mi Choi Office: 312-915-6320, Email: hchoi2@luc.edu Maguire Office #552 1 East Pearson, Chicago, IL 60611 Office Hours: M, W, F 9:45-10:15am, Tu 1-4pm, and by appointment FINC 332 Section

More information

PA 750: Financial Management in Public Service Tuesday, 6:00-8:45 pm DTC Lab 617

PA 750: Financial Management in Public Service Tuesday, 6:00-8:45 pm DTC Lab 617 PA 750: Financial Management in Public Service Tuesday, 6:00-8:45 pm DTC Lab 617 Instructor: Dr. Janey Qian Wang Office: Downtown Center, suite 678 E-mail: jqwang@sfsu.edu Telephone: 415-817-4456 Office

More information

CHEM 112-03 PRINCIPLES OF CHEMISTRY Lecture

CHEM 112-03 PRINCIPLES OF CHEMISTRY Lecture CHEM 112-03 PRINCIPLES OF CHEMISTRY Lecture Spring 2016 COURSE DESCRIPTION An introductory course in chemistry emphasizing theoretical aspects and designed primarily for students who intend to take one

More information

Georgia State University Chemistry 1212K Course Syllabus, Fall 2014

Georgia State University Chemistry 1212K Course Syllabus, Fall 2014 Georgia State University Chemistry 1212K Course Syllabus, Fall 2014 Text: Chemistry: A molecular Approach by Nivaldo Tro with Mastering General Chemistry 3 e Mastering Chemistry Course ID: MCSTROEVA 17591

More information

UNIVERSITY OF LETHBRIDGE FACULTY OF MANAGEMENT Mgt 2400A Management Accounting Fall 2014

UNIVERSITY OF LETHBRIDGE FACULTY OF MANAGEMENT Mgt 2400A Management Accounting Fall 2014 UNIVERSITY OF LETHBRIDGE FACULTY OF MANAGEMENT Mgt 2400A Management Accounting Fall 2014 Instructor: Adam Zanoni, CA Telephone 403-795-1036 E-mail: adam.zanoni2@uleth.ca Class times and location: Tuesday

More information

Computer Science 160 Fall WEC Semester 2012 Introduction to Computer Science and Communication

Computer Science 160 Fall WEC Semester 2012 Introduction to Computer Science and Communication Computer Science 160 Fall WEC Semester 2012 Introduction to Computer Science and Communication Instructor: Tim Wrenn Phone: 612-330-1414 Office: Sverdrup 203A Office Hours: 5:00 5:50 PM Email: wrenn@augsburg.edu

More information

Digital Communication Southwest College

Digital Communication Southwest College Digital Communication Southwest College ARTC 1317 0080 Design Communication I CRN 76410 Fall 2015 West Loop Center - Room 131 5:30 pm - 9:45 pm Monday 2 hrs. Lecture (32 hrs.) / 3 hrs. External (48 hrs.)

More information

Introduction to Criminal Justice Fall 2012 CJS 101-002

Introduction to Criminal Justice Fall 2012 CJS 101-002 Introduction to Criminal Justice Fall 2012 CJS 101-002 Instructor: Dr. Wendi Pollock Office: LAN Room 108 Telephone: 936-468-3948 Email: pollockwk@sfasu.edu Class Hours: Tuesday and Thursday 8:00-9:15

More information

Psychology 420 (Sections 101 and 102) Experimental Psychology: Social Psychology Laboratory

Psychology 420 (Sections 101 and 102) Experimental Psychology: Social Psychology Laboratory Instructor: Edward Lemay, PhD. email: elemay@umd.edu office: BPS 3147B office hours: by appointment Teaching Assistants: Psychology 420 (Sections 101 and 102) Experimental Psychology: Social Psychology

More information

Required Materials: Babbie, Earl. 2011. The Basics of Social Research (6 th ed.). Belmont: Cengage

Required Materials: Babbie, Earl. 2011. The Basics of Social Research (6 th ed.). Belmont: Cengage Pamplin College of Arts, Humanities, and Social Sciences POLS 3800 A3: Introduction to Political Research Summer 2015 MTWRF 9:00 10:50 AM; N 344 Allgood Hall Instructor: Augustine Hammond, Ph.D. Email:

More information

Computer Science 1015F ~ 2010 ~ Notes to Students

Computer Science 1015F ~ 2010 ~ Notes to Students Computer Science 1015F ~ 2010 ~ Notes to Students Course Description Computer Science 1015/8F and 1016S together constitute a complete Computer Science curriculum for first year students, offering an introduction

More information

More precisely, upon successful completion of this course you can expect to be able to:

More precisely, upon successful completion of this course you can expect to be able to: ANTH 432: Fall 2011, Coastal Carolina University Class meeting times: Tu/Th, 1:40-2:55pm Location: Smith Science Bldg. 106 Instructor: Dr. Carolyn Dillian Office: 114 Sands Building Office Hours: Tuesday/Thursday

More information

Statistical Methods Online Course Syllabus

Statistical Methods Online Course Syllabus VALENCIA COLLEGE EAST CAMPUS STA 2023 STATISTICAL METHODS (ONLINE COURSE) SYLLABUS Term/Year: Fall 2011 CRN: 11563/11615/13231/11839 Professor: Dr. Agatha Shaw E-mail: Blackboard Course E-Mail or ashaw17@mail.valenciaccollege.edu

More information

BIO 111-01 Evolution. KSCommons. Keene State College. Sciences and Social Sciences, School of. Syllabi. Spring 2010

BIO 111-01 Evolution. KSCommons. Keene State College. Sciences and Social Sciences, School of. Syllabi. Spring 2010 Keene State College KSCommons Syllabi Spring 2010 BIO 111-01 Evolution Sciences and Social Sciences, School of Follow this and additional works at: http://commons.keene.edu/syllabi Recommended Citation

More information

IST359 - INTRODUCTION TO DATABASE MANAGEMENT SYSTEMS

IST359 - INTRODUCTION TO DATABASE MANAGEMENT SYSTEMS IST359 - INTRODUCTION TO DATABASE MANAGEMENT SYSTEMS 1. COURSE DETAILS Revised: 1/13/2012 COURSE (SECTION): IST359 (M001) TERM: Spring 2012 INSTRUCTOR: Deborah Nosky FINAL EXAM: Tuesday, May 8 th 10:15

More information

STA 4442 INTRODUCTION TO PROBABILITY FALL 2012

STA 4442 INTRODUCTION TO PROBABILITY FALL 2012 Instructor: Keshav P. Pokhrel Email: kpokhrel@mail.usf.edu Class Hours: MWF 12.55PM-1.45PM in CMC 118 Office Hours: MW 2:00PM 3:00 PM in CMC 368 A (Third Floor) or by appointment. Prerequisite: MAC2313

More information

Course: ISYS 4373 Application Development with Java Prerequisite: ISYS 3293

Course: ISYS 4373 Application Development with Java Prerequisite: ISYS 3293 COURSE SYLLABUS Course: ISYS 4373 Application Development with Java Prerequisite: ISYS 3293 Welcome: Welcome to ISYS 4373, an introduction to Java programming. The purpose of this course is to provide

More information

Math 103, College Algebra Fall 2015 Syllabus TTh PM Classes

Math 103, College Algebra Fall 2015 Syllabus TTh PM Classes SECTION #: Lecture Time: Lecture Location: Lecture Instructor: Office Hours: Office Location: Phone: E-mail: Class Materials: Graphing Calculator: A graphing calculator is required for this course and

More information

ENGR 102: Engineering Problem Solving II

ENGR 102: Engineering Problem Solving II ENGR 102: Engineering Problem Solving II CLASS SCHEDULE AND LOCATION: COURSE FORMAT: CREDIT HOURS: PREREQUISITES: In-class lecture, class activities, group projects, and exams 3 credit hours ENGR 101,

More information

SOCIAL PROBLEMS Online Course Syllabus SOC 1303-D10 CRN 10036 Fall 2015 Angelo State University

SOCIAL PROBLEMS Online Course Syllabus SOC 1303-D10 CRN 10036 Fall 2015 Angelo State University SOCIAL PROBLEMS Online Course Syllabus SOC 1303-D10 CRN 10036 Fall 2015 Angelo State University Jennifer L. Newman-Shoemake BS, MS jennifer.newman@angelo.edu COURSE INFORMATION: This is an online lecture

More information

MASTER SYLLABUS 2015-2016

MASTER SYLLABUS 2015-2016 MASTER SYLLABUS 2015-2016 A. Academic Division: Business, Industry and Technology B. Discipline: Industrial Technology Engineering Design C. Course Number and Title: ENRD2170 Computer Aided Design II D.

More information

Syllabus - Biological Sciences E- 65C: Human Anatomy & Physiology

Syllabus - Biological Sciences E- 65C: Human Anatomy & Physiology Syllabus - Biological Sciences E- 65C: Human Anatomy & Physiology Fall 2012- Instructor: Dr. Jennifer Carr; 416 Science Center; Office Hours: 4:15-5:15 or by appointment Date Lecture # Lecture Topic Readings

More information

Moravian College Department of Biological Sciences Anatomy and Physiology - BIO 103 Fall 2008

Moravian College Department of Biological Sciences Anatomy and Physiology - BIO 103 Fall 2008 Moravian College Department of Biological Sciences Anatomy and Physiology - BIO 103 Fall 2008 Instructors: Dr. Cecilia M. Fox Ms. Marie Hosier (lab instructor for laboratory section B) Phone: Fox: 610-861-1426

More information

FORENSIC SCIENCE: BEYOND CRIME LAB CJUS 488 Online (Moodle): Fall, 2015

FORENSIC SCIENCE: BEYOND CRIME LAB CJUS 488 Online (Moodle): Fall, 2015 FORENSIC SCIENCE: BEYOND CRIME LAB CJUS 488 Online (Moodle): Fall, 2015 Jennifer Foust, PhD Student email: jennifer1.foust@umontana.edu EXPECTED OUTCOMES In this class students will learn the following

More information

MAT 183 - Elements of Modern Mathematics Syllabus for Spring 2011 Section 100, TTh 9:30-10:50 AM; Section 200, TTh 8:00-9:20 AM

MAT 183 - Elements of Modern Mathematics Syllabus for Spring 2011 Section 100, TTh 9:30-10:50 AM; Section 200, TTh 8:00-9:20 AM MAT 183 - Elements of Modern Mathematics Syllabus for Spring 2011 Section 100, TTh 9:30-10:50 AM; Section 200, TTh 8:00-9:20 AM Course Instructor email office ext. Thomas John, Ph.D. thjohn@syr.edu 224

More information

1. COURSE DESCRIPTION

1. COURSE DESCRIPTION C. T. Bauer College of Business University of Houston MARK 4363: International Marketing (Spring 2014) Instructor Office Hours Required Textbook Course Website Professor Ye Hu, Ph.D. 375F Melcher Hall

More information

CSS 341 : Fundamentals of Programming Theory and Applications Course Syllabus-Autumn 2012

CSS 341 : Fundamentals of Programming Theory and Applications Course Syllabus-Autumn 2012 Fund Prog Autumn 2012 Page 1 of 9 CSS 341 : Fundamentals of Programming Theory and Applications Course Syllabus-Autumn 2012 Instructor: Charles F. Jackels Office: Room 251-UWBB (Science and Technology

More information

Physics 21-Bio: University Physics I with Biological Applications Syllabus for Spring 2012

Physics 21-Bio: University Physics I with Biological Applications Syllabus for Spring 2012 Physics 21-Bio: University Physics I with Biological Applications Syllabus for Spring 2012 Class Information Instructor: Prof. Mark Reeves (Samson 214, reevesme@gwu.edu 46279) Office Hours: Tuesday 4:30-5:15

More information

Michael G. Foster School of Business University of Washington. MBA Core Managerial Finance BA 500 Fall 2013. Thomas Gilbert.

Michael G. Foster School of Business University of Washington. MBA Core Managerial Finance BA 500 Fall 2013. Thomas Gilbert. Michael G. Foster School of Business University of Washington MBA Core Managerial Finance BA 500 Fall 2013 Prof. Thomas Gilbert Syllabus Price is what you pay. Value is what you get. Warren Buffett This

More information

IST 645 Managing Information Technology Projects

IST 645 Managing Information Technology Projects Semester: Fall 2014 Class date/time: Wednesdays 5:15pm 8:05p.m. Class location: Hinds Hall 117 Office hours: by appointment Instructor: Tom Uva Phone: 315.247.6875 (M) E-mail: tuva@twcny.rr.com Course

More information

COURSE NUMBER AND TITLE: Management Information Systems Concepts

COURSE NUMBER AND TITLE: Management Information Systems Concepts (IS213ZA) (Management Information Systems Concepts) Page 1 EMPORIA STATE UNIVERSITY SCHOOL OF BUSINESS DEPARTMENT OF ACCOUNTING AND INFORMATION SYSTEMS Course Syllabus Fall 2012 MISSION STATEMENT: The

More information