INFSCI 0017 Fundamentals of Object- Oriented Programming

Size: px
Start display at page:

Download "INFSCI 0017 Fundamentals of Object- Oriented Programming"

Transcription

1 INFSCI 0017 Fundamentals of Object- Oriented Programming Term: Fall 2013 Time: Thursdays 6:00 8:30 Location: Information Science Building, Room 404 Instructor: Dmitriy Babichenko Instructor s dmb72@pitt.edu Office Hours: Mondays, 3-4 PM and Thursdays 2:00 4:00 PM Office Address: Room 722, Information Sciences Building TA: Sabrina Murphy Instructor s SCM56@pitt.edu Office Hours: Thursdays, 1:30 PM - 3:30 PM Office Address: Room 721, Information Sciences Building TA: Jordan Feldman Instructor s jsf37@pitt.edu Office Hours: Tuesdays, 3:00 PM 5:00 PM Office Address: Room 721, Information Sciences Building Course Description: INFSCI 0017 is the first JAVA programming course that provides fundamental skills needed to understand, design and maintain enterprise-scale information systems. This course follows an architecture-centric approach to programming in contrast to the algorithm-centric approach in computer science. This course is strongly preferred over CS 401, especially for students who plan to take INFSCI 1017 or Designed for students with no previous programming experience, the course introduces the object-oriented programming paradigm followed by JAVA language basics

2 applied in a sound architectural context. Thorough treatment of interfaces, inheritance, abstract classes and polymorphism. This is an active learning course where students complete a realistic sequence of programming assignments using Eclipse, the leading JAVA integrated development environment (IDE). Textbook: Big Java: Early Objects by Cay Horstmann (required) 1. Paperback edition: Java- Cay- S- Horstmann/dp/ /ref=tmm_pap_title_0?ie=UTF8&qid= &sr= Kindle edition: Java- Objects- Edition- ebook/dp/b00cuspgwc/ref=tmm_kin_title_0?ie=utf8&qid= &sr=8-1 Objectives: Upon successful completion of this course, the student will be able to: 1. Understand and make proper use of core programming concepts such as data types, operators, and control structures in Java 2. Effectively use Eclipse IDE (Integrated Development Environment) to develop and manage Java software projects 3. Write human- readable code that complies with widely- accepted coding style guidelines 4. Develop programs that appropriately utilize object- oriented concepts such as abstract classes, inheritance, interfaces and polymorphism 5. Write effective in- code comments and generate documentation using JavaDoc tools 6. Employ effective unit- testing techniques using JUnit testing framework Course Schedule (tentative, subject to change): Week Date Topic(s) Details 1 8/29 Introduction and overview Introduction to course Java overview Introduction to Eclipse IDE Hello World program 2 9/5 Variables Variables (math vs. programming) Data types Brief introduction to objects (classes vs. objects) Code documentation/introduction to JavaDocs 3 9/13 Control structures If/else Switch/case 4 9/19 Iteration/Loops For loop While loop

3 Do/While loop 5 9/26 Introduction to objects Introduction to objects Classes vs. objects Properties Methods Visibility 6 10/3 Object design and testing Abstraction Class constructors Method overloading Coupling vs. cohesion Java API / API documentation JavaDoc tools Unit testing / introduction to JUnit 7 10/10 In- class lab Midterm preparation 8 10/17 Midterm 9 10/24 Arrays Lists in Java Arrays ArrayLists 10 10/31 In- class lab Designing objects 11 11/7 Object relationships Working with text files Inheritance Association Aggregation Composition File I/O Abstract classes 12 11/14 Java UI tools WindowBuilder 13 11/21 Advanced topics Introduction to recursion Polymorphism 14 11/28 Thanksgiving Break 15 12/4 In- class lab Help/questions with final project 16 12/12 Final project due Quizzes: Each class will begin with a short 5- question quiz. Each quiz will be worth 20 points. All questions will be based on class lectures and reading assignments from the previous week. There will be no make- up quizzes, but at the end of the semester I will drop one lowest quiz grade. Take- Home Assignments: All take- home assignments, the midterm and the final project will be individual you are not allowed to work in teams. Assignments will be graded as follows:

4 If your program doesn t compile, you will automatically lose 25 points (the maximum grade that you will be able to receive is 75, or C+) If your program compiles but does not run, you will automatically lose 20 points (the maximum grade that you will be able to receive is 80, or B- ) If your program is missing documentation (when required by assignment), you will lose 2 points per missing documentation instance, up to 10 points per project If your program is missing use cases (when required by assignment), you will lose 5 points per missing use case instance, up to 20 points per project Things that could also affect your grade: o Logic errors in your programs (your program runs incorrectly/produces incorrect results) o Not following requirements (your program does not produce results required by the assignment) o Not following accepted coding standards/naming conventions Submission Guidelines: All assignments must be submitted via sent to the course instructor (dmb72@pitt.edu). All assignments must be submitted via the CourseWeb (courseweb.pitt.edu). The due date for all programming assignment is the end of the day (11:59pm) BEFORE the lecture. Each project must be zipped into a single file using standard.zip format. That file will contain all source code, documentation and any external libraries used in your project. The final zipped file must be titled with the last name of the author, number of the assignment and course number separated by underscores. For example, if your last name is Doe and you are submitting assignment 2, your final file should be named Doe_Assignment2_INFSCI0007.zip. You will lose 2 points for every submission that does not follow this naming convention. Name of the course (INFSCI0017) and the name of the assignment you are submitting must also be in the subject line. Late Submissions: Projects/assignments submitted after due date will be accepted, but your overall grade for that project/assignment will be reduced by 10% of the grade for every business day after the submission deadline. For example, if you will submit your work one week late, you will lose 50% of the grade. Grading Policy: 1. Participation/In- class exercises: 10% 2. Quizzes: 20% 3. Assignments: 30% 4. Midterm project: 20% 5. Final project: 20% Grading Scale:

5 98 <= A+ 92 <= A < <= A- < <= B+ < <= B < <= B- < <= C+ < <= C < <= C- < <= D < 70 F < 60 Academic Integrity: Cheating/plagiarism will not be tolerated. All work must be your own, unless collaboration is specifically and explicitly permitted as in the course group project. Any unauthorized collaboration or copying will at minimum result in no credit for the affected assignment and may be subject to further action under the University Guidelines for Academic Integrity ( You may incorporate excerpts from publications by other authors, but they must be clearly marked as quotations and properly attributed. You may discuss your ideas with others, but all substantive writing and ideas must be your own, or else be explicitly attributed to another, using a citation sufficiently detailed for someone else to easily locate your source. Disability: If you have a disability for which you are or may be requesting an accommodation, you are encouraged to contact the Instructor and Disability Resources and Services, 216 William Pitt Union, (412) / (412) (TTY), as early as possible in the term. Disability Resources and Services reviews documentation related to a student's disability, provides verification of the disability, and recommends reasonable accommodations for specific courses.

INFSCI 1017 Implementation of Information Systems

INFSCI 1017 Implementation of Information Systems INFSCI 1017 Implementation of Information Systems Time: Thursdays 6:00 8:30 Location: Information Science Building, Room 411 Instructor: Dmitriy Babichenko Office Hours: Tuesdays, 3-5PM Wednesday, 3-5PM

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

Introduction to Java Programming ITP 109 (2 Units) Fall 2015

Introduction to Java Programming ITP 109 (2 Units) Fall 2015 Introduction to Java Programming ITP 109 (2 Units) Fall 2015 Catalogue Description Objective Prerequisites Instructor Office Hours Lab Assistants Course Hours Course Structure Required Textbook Grading

More information

CS 2302 Data Structures Spring 2015

CS 2302 Data Structures Spring 2015 1. General Information Instructor: CS 2302 Data Structures Spring 2015 Olac Fuentes Email: ofuentes@utep.edu Web: www.cs.utep.edu/ofuentes Office hours: Tuesdays and Thursdays 2:00-3:30, or by appointment,

More information

Introduction to Computer Programming (CS 1323) Project 9

Introduction to Computer Programming (CS 1323) Project 9 Introduction to Computer Programming (CS 1323) Project 9 Instructor: Andrew H. Fagg November 30, 2014 Introduction Inproject6, wedevelopedasimplemodelofamarkovchain. Inthisproject, wewilldevelop an object-based

More information

MATH 2103 Business Calculus Oklahoma State University HONORS Spring 2015 Instructor: Dr. Melissa Mills 517 Math Sciences memills@math.okstate.

MATH 2103 Business Calculus Oklahoma State University HONORS Spring 2015 Instructor: Dr. Melissa Mills 517 Math Sciences memills@math.okstate. MATH 2103 Business Calculus Oklahoma State University HONORS Spring 2015 Instructor: Dr. Melissa Mills 517 Math Sciences memills@math.okstate.edu 744-1689 Office Hours: Monday 11:30am in MSCS 517 Tuesday

More information

Sample Syllabus (C++) CSCI 1301 Introduction to Programming Principles

Sample Syllabus (C++) CSCI 1301 Introduction to Programming Principles Sample Syllabus (C++) CSCI 1301 Introduction to Programming Principles Knowledge Areas that contain topics and learning outcomes covered in the course Knowledge Areas Total Hours of Coverage Software Development

More information

Computer Programming I

Computer Programming I Computer Programming I COP 2210 Syllabus Spring Semester 2012 Instructor: Greg Shaw Office: ECS 313 (Engineering and Computer Science Bldg) Office Hours: Tuesday: 2:50 4:50, 7:45 8:30 Thursday: 2:50 4:50,

More information

RARITAN VALLEY COMMUNITY COLLEGE ACADEMIC COURSE OUTLINE. CISY 105 Foundations of Computer Science

RARITAN VALLEY COMMUNITY COLLEGE ACADEMIC COURSE OUTLINE. CISY 105 Foundations of Computer Science I. Basic Course Information RARITAN VALLEY COMMUNITY COLLEGE ACADEMIC COURSE OUTLINE CISY 105 Foundations of Computer Science A. Course Number and Title: CISY-105, Foundations of Computer Science B. New

More information

Syllabus for CS 134 Java Programming

Syllabus for CS 134 Java Programming - Java Programming Syllabus Page 1 Syllabus for CS 134 Java Programming Computer Science Course Catalog 2000-2001: This course is an introduction to objectoriented programming using the Java language.

More information

CS A250 (CRN 20690-25399) C++ Programming Language 2. Syllabus Fall 2015

CS A250 (CRN 20690-25399) C++ Programming Language 2. Syllabus Fall 2015 CS A250 (CRN 20690-25399) C++ Programming Language 2 Syllabus Fall 2015 Instructor: Gabriela Ernsberger E-mail: gernsberger@occ.cccd.edu Course Web site: www.thisclass.info Office: MB Computing Center

More information

CSCI 528: OBJECT ORIENTED PROGRAMMING, Fall 2015

CSCI 528: OBJECT ORIENTED PROGRAMMING, Fall 2015 INSTRUCTOR: CSCI 528: OBJECT ORIENTED PROGRAMMING, Fall 2015 Dr. Will McWhorter Adjunct Professor, Department of Computer Science Office: Online Only Phone: 903-434-8223 Email: William.McWhorter@tamuc.edu

More information

Introduction to Information Technology ITP 101x (4 Units)

Introduction to Information Technology ITP 101x (4 Units) Objective Concepts Introduction to Information Technology ITP 101x (4 Units) Upon completing this course, students will: - Understand the fundamentals of information technology - Learn core concepts of

More information

Major Topics Covered in the Course

Major Topics Covered in the Course Welcome to CSE 110! CSE 110 : Principles of Programming with Java (3) Spring 2012, Syllabus and Course Information School of Computing, Informatics, and Decision Systems Engineering, ASU Course web page

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

CS 4330: Mobile Application Development Spring 2015

CS 4330: Mobile Application Development Spring 2015 CS 4330: Mobile Application Development Spring 2015 CRN: 27188 Lecture: TR 3:00-4:20 pm in CCSB 1.0202 Website: http://www.cs.utep.edu/cheon/cs4330 Instructor: Yoonsik Cheon (x-8028, ycheon@utep.edu);

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 2015 CS 425 Software Engineering Course Syllabus Lectures: TR, 9:30 10:45 am, LEG-212 Instructor:

More information

Syllabus COMP 517 Computer Security Penn State Harrisburg Fall 2009

Syllabus COMP 517 Computer Security Penn State Harrisburg Fall 2009 Syllabus COMP 517 Computer Security Penn State Harrisburg Fall 2009 Instructor Dr. Jeremy Blum Office Location: Email (preferred contact method 1): Office hours (preferred contact method 2): 255W Olmsted

More information

NEW YORK CITY COLLEGE OF TECHNOLOGY/CUNY Computer Systems Technology Department

NEW YORK CITY COLLEGE OF TECHNOLOGY/CUNY Computer Systems Technology Department NEW YORK CITY COLLEGE OF TECHNOLOGY/CUNY Computer Systems Technology Department COURSE: CST1201 Programming Fundamentals (2 class hours, 2 lab hours, 3 credits) Course Description: This course is an intensive

More information

CS 4240: Principles of Software Design. Course Introduction. Tom Horton horton.uva@gmail.com

CS 4240: Principles of Software Design. Course Introduction. Tom Horton horton.uva@gmail.com CS 4240: Principles of Software Design Course Introduction Tom Horton horton.uva@gmail.com Official Course Description: This course focuses on techniques for software design in the development of large

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

CS 395 - Mobile Development for Social Change

CS 395 - Mobile Development for Social Change CS 395 - Mobile Development for Social Change Sorelle Friedler sorelle@cs.haverford.edu Spring 2015 Mobile Development for Social Change will focus on standard software engineering principles, object oriented

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

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

Sociology 302: Contemporary Social Problems

Sociology 302: Contemporary Social Problems Sociology 302: Contemporary Social Problems Southern Illinois University, Carbondale Fall 2012 Instructor: Dr. Kretschmer Course Time: Tues/Thurs 11am-12:15pm Email: kkretsch@siu.edu Location: WHAM 0203

More information

School of Computing and Information Sciences

School of Computing and Information Sciences Course Title: Computer Date: 10/7/2010 Course Number: Number of Credits: 4 Subject Area: Programming Subject Area Coordinator: Tim Downey email: downeyt@cis.fiu.edu Catalog Description: A first course

More information

The University of Akron Department of Mathematics. 3450:145-803 COLLEGE ALGEBRA 4 credits Spring 2015

The University of Akron Department of Mathematics. 3450:145-803 COLLEGE ALGEBRA 4 credits Spring 2015 The University of Akron Department of Mathematics 3450:145-803 COLLEGE ALGEBRA 4 credits Spring 2015 Instructor: Jonathan Hafner Email: jhafner@zips.uakron.edu Office: CAS 249 Phone: (330) 972 6158 Office

More information

SYLLABUS MAC 1105 COLLEGE ALGEBRA Spring 2011 Tuesday & Thursday 12:30 p.m. 1:45 p.m.

SYLLABUS MAC 1105 COLLEGE ALGEBRA Spring 2011 Tuesday & Thursday 12:30 p.m. 1:45 p.m. SYLLABUS MAC 1105 COLLEGE ALGEBRA Spring 2011 Tuesday & Thursday 12:30 p.m. 1:45 p.m. Instructor: Val Mohanakumar Office Location: Office Phone #: 253 7351 Email: vmohanakumar@hccfl.edu Webpage: http://www.hccfl.edu/faculty-info/vmohanakumar.aspx.

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

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

Interactive Web Development ITP 301 (4 Units)

Interactive Web Development ITP 301 (4 Units) Interactive Web Development ITP 301 (4 Units) Fall 2015 Section 31824R Objective This course is intended to teach the basic programming tools and development techniques needed to create interactive web

More information

Geography 676 Web Spatial Database Development and Programming

Geography 676 Web Spatial Database Development and Programming Geography 676 Web Spatial Database Development and Programming Instructor: Prof. Qunying Huang Office: 426 Science Hall Tel: 608-890-4946 E-mail: qhuang46@wisc.edu Office Hours: T, R, and F 1:00-2:00 PM

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

CMSC 10600 Fundamentals of Computer Programming II (C++)

CMSC 10600 Fundamentals of Computer Programming II (C++) CMSC 10600 Fundamentals of Computer Programming II (C++) Department of Computer Science University of Chicago Winter 2011 Quarter Dates: January 3 through March 19, 2011 Lectures: TuTh 12:00-13:20 in Ryerson

More information

COURSE SYLLABUS EDG 6931: Designing Integrated Media Environments 2 Educational Technology Program University of Florida

COURSE SYLLABUS EDG 6931: Designing Integrated Media Environments 2 Educational Technology Program University of Florida COURSE SYLLABUS EDG 6931: Designing Integrated Media Environments 2 Educational Technology Program University of Florida CREDIT HOURS 3 credits hours PREREQUISITE Completion of EME 6208 with a passing

More information

COMP-202B: Foundations of Programming

COMP-202B: Foundations of Programming COMP-202B: Foundations of Programming McGill University, Winter 2015 Course Details Instructor: Jonathan Tremblay Office: McConnell Engineering Building (MC) 231 Office hours: Monday & Wednesday 9:00 10:00

More information

PLV Goldstein 315, Tuesdays and Thursdays, 6:00PM-7:50PM. Tuesdays and Thursdays, 4:00PM-5:30PM and 7:50PM 9:30PM at PLV G320

PLV Goldstein 315, Tuesdays and Thursdays, 6:00PM-7:50PM. Tuesdays and Thursdays, 4:00PM-5:30PM and 7:50PM 9:30PM at PLV G320 CRN:22430/21519 Pace University Spring 2006 CS122/504 Computer Programming II Instructor Lectures Office Hours Dr. Lixin Tao, ltao@pace.edu, http://csis.pace.edu/~lixin Pleasantville Office: G320, (914)773-3449

More information

BMI 540: Computer Science with Java Programming Oregon Health & Science University

BMI 540: Computer Science with Java Programming Oregon Health & Science University BMI 540: Computer Science with Java Programming Oregon Health & Science University Fall 2013 General Information Dates: September 30, 2013 December 13, 2013 Instructor: Justin Fletcher, PhD Email: fletchju@ohsu.edu

More information

EPI 820/CPH504: Epidemiology in Public Health (Online)

EPI 820/CPH504: Epidemiology in Public Health (Online) EPI 820/CPH504: Epidemiology in Public Health (Online) Course Description Spring Semester 2013 3 credits COURSE SYLLABUS This course provides an opportunity for graduate and professional students and fellows

More information

Computer Science CS 2334: Programming structures and abstractions

Computer Science CS 2334: Programming structures and abstractions Computer Science CS 2334: Programming structures and abstractions Instructor: Dr. McGovern Spring 2013 1 Course Overview This is your second course in programming. We will focus on abstraction and programming

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

Syllabus: IST451. Division of Business and Engineering. Penn State Altoona

Syllabus: IST451. Division of Business and Engineering. Penn State Altoona Syllabus: IST451 Division of Business and Engineering Penn State Altoona Course Title 1. IST451: Network Security-Spring 2012 2. Section 001 3. Credits: 3 Meeting Times 1. Lectures: Mondays and Wednesdays

More information

Software Development Foundations CPSC 2150-002 Spring 2014 Syllabus

Software Development Foundations CPSC 2150-002 Spring 2014 Syllabus College of Engineering and Science, School of Computing Part 1: Course Information Instructor Information Instructor: J. Yates Monteith Office: McAdams 109 Office Hours: Monday / Wednesday, 2:00 PM 4:00

More information

COURSE TEXTBOOK [Insert required course text academic format for book listing with ISBN# and edition]

COURSE TEXTBOOK [Insert required course text academic format for book listing with ISBN# and edition] New York University Tisch School of the Arts [COURSE TITLE] Course Syllabus [COURSE NUMBER] / [NUMBER OF CREDITS] Office of Special Programs [DATE] Instructor Name: COURSE DESCRIPTION [The description

More information

Financial Calculator (any version is fine but access to a support manual is critical)

Financial Calculator (any version is fine but access to a support manual is critical) HDFS 482, Fall 2013: Family Savings and Investments Tuesday and Thursday 9:30-10:50 am, LeBaron 2069 College of Human Sciences, Department of Human Development and Family Studies Iowa State University

More information

COURSE APPROVAL DOCUMENT Southeast Missouri State University

COURSE APPROVAL DOCUMENT Southeast Missouri State University COURSE APPROVAL DOCUMENT Southeast Missouri State University Department: Mathematics Course No. MA585 Title of Course: Introduction to Life Contingencies Date: Fall 2015 Please check: New Revision I. Catalog

More information

COLLIN COUNTY COMMUNITY COLLEGE DISTRICT DIVISION OF BUSINESS, INFORMATION & ENGINEERING TECHNOLOGIES COURSE SYLLABUS REAL ESTATE MARKETING

COLLIN COUNTY COMMUNITY COLLEGE DISTRICT DIVISION OF BUSINESS, INFORMATION & ENGINEERING TECHNOLOGIES COURSE SYLLABUS REAL ESTATE MARKETING COLLIN COUNTY COMMUNITY COLLEGE DISTRICT DIVISION OF BUSINESS, INFORMATION & ENGINEERING TECHNOLOGIES COURSE SYLLABUS COURSE NUMBER: RELE 1321 SECTION: COURSE TITLE: REAL ESTATE MARKETING COURSE DESCRIPTION:

More information

Computer Science III Advanced Placement G/T [AP Computer Science A] Syllabus

Computer Science III Advanced Placement G/T [AP Computer Science A] Syllabus Computer Science III Advanced Placement G/T [AP Computer Science A] Syllabus Course Overview This course is a fast-paced advanced level course that focuses on the study of the fundamental principles associated

More information

CSC-570 Introduction to Database Management Systems

CSC-570 Introduction to Database Management Systems The American University College of Arts and Sciences Department of Computer Science CSC-570 Introduction to Database Management Systems Semester: Fall 2011 Section: 001 Meeting Time(s): Wednesday 5:30

More information

MATH 245 COLLEGE ALGEBRA Section 0251 10:55 1:30

MATH 245 COLLEGE ALGEBRA Section 0251 10:55 1:30 MATH 245 COLLEGE ALGEBRA Section 0251 10:55 1:30 Instructor: Ms. L. K. Deutsch Office Hours: MW 1:30 3:50 PM Office & Office Phone: C2.123-2 323-780-6735 Textbook: College Algebra Lial, Hornsby and Schneider

More information

Gustavus Adolphus College Department of Economics and Management E/M 260 002: MARKETING M/T/W/F 11:30AM 12:20AM, BH 301, SPRING 2016

Gustavus Adolphus College Department of Economics and Management E/M 260 002: MARKETING M/T/W/F 11:30AM 12:20AM, BH 301, SPRING 2016 Gustavus Adolphus College Department of Economics and Management E/M 260 002: MARKETING M/T/W/F 11:30AM 12:20AM, BH 301, SPRING 2016 Instructor: Wei Fu Office: BH 135 Phone: 507-933-6141 E-mail: wfu@gustavus.edu

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

MATH 1900, ANALYTIC GEOMETRY AND CALCULUS II SYLLABUS

MATH 1900, ANALYTIC GEOMETRY AND CALCULUS II SYLLABUS MATH 1900, ANALYTIC GEOMETRY AND CALCULUS II SYLLABUS COURSE TITLE: Analytic Geometry and Calculus II CREDIT: 5 credit hours SEMESTER: Spring 2010 INSTRUCTOR: Shahla Peterman OFFICE: 353 CCB PHONE: 314-516-5826

More information

CS 300 Data Structures Syllabus - Fall 2014

CS 300 Data Structures Syllabus - Fall 2014 CS 300 Data Structures Syllabus - Fall 2014 Catalog Description Data structures are fundamental to advanced, efficient programming. Topics including asymptotic analysis, stacks, queues, linked lists, trees,

More information

IT 106 Introduction to IT Problem Solving Using Computer Programming revised 01.09.2013

IT 106 Introduction to IT Problem Solving Using Computer Programming revised 01.09.2013 Applied Information Technology Department Course Syllabus IT 106 Introduction to IT Problem Solving Using Computer Programming revised 01.09.2013 Catalog Description Introduces use of procedural programming

More information

BADM323: Information Systems for Business Professionals SU2016 Online Course

BADM323: Information Systems for Business Professionals SU2016 Online Course Catalog Description BADM323: Information Systems for Business Professionals This course provides the knowledge and understanding of how information can be used in a business organization for achieving

More information

FIN 430: Financial Modeling (Spring 2016) Professor Russell Jame Course Overview and Objectives Course Prerequisites Required Materials

FIN 430: Financial Modeling (Spring 2016) Professor Russell Jame Course Overview and Objectives Course Prerequisites Required Materials FIN 430: Financial Modeling (Spring 2016) Professor Russell Jame BE Room 235 Office: 335J Gatton Email: russell.jame@uky.edu Office hours: TR 9 10 am, or by appointment Course Overview and Objectives This

More information

ITP 300: Database Web Development. Database Web Development (Monday section) http://webdev.usc.edu/itp300m Fall 2012 Course 32031 3 Units

ITP 300: Database Web Development. Database Web Development (Monday section) http://webdev.usc.edu/itp300m Fall 2012 Course 32031 3 Units ITP 300: Database Web Development Course: Lecture/Lab: Instructor: Database Web Development (Monday section) http://webdev.usc.edu/itp300m Fall 2012 Course 32031 3 Units Mondays from 2 4:50 p.m. in KAP267

More information

UNIVERSITY OF MICHIGAN SCHOOL OF INFORMATION SI301: Models of Social Information Processing Syllabus

UNIVERSITY OF MICHIGAN SCHOOL OF INFORMATION SI301: Models of Social Information Processing Syllabus UNIVERSITY OF MICHIGAN SCHOOL OF INFORMATION SI301: Models of Social Information Processing Syllabus Instructor: Office: Office hours: GSI: Office Hours: Course Email: WebSite: Tanya Rosenblat < trosenbl@umich.edu>

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

Summit Public Schools Summit, New Jersey Grade Level / Content Area: Mathematics Length of Course: 1 Academic Year Curriculum: AP Computer Science A

Summit Public Schools Summit, New Jersey Grade Level / Content Area: Mathematics Length of Course: 1 Academic Year Curriculum: AP Computer Science A Summit Public Schools Summit, New Jersey Grade Level / Content Area: Mathematics Length of Course: 1 Academic Year Curriculum: AP Computer Science A Developed By Brian Weinfeld Course Description: AP Computer

More information

Required Textbook: Customer Service: A Practical Approach; 6th Edition, by Elaine K. Harris, Prentice Hall, ISBN 978-0- 13-274239-9

Required Textbook: Customer Service: A Practical Approach; 6th Edition, by Elaine K. Harris, Prentice Hall, ISBN 978-0- 13-274239-9 MKT 574.01E CRM Fall 2014 CLASSROOM: BA 245 MEETING TIMES: T 2:00 p.m. 5:30 p.m. CST Instructor: Dr. Leslie Toombs Office: BA 320 Phone: 903-886- 5903 Fax: 903-886-5702 E-mail: leslie.toombs@tamuc.edu

More information

City University of Hong Kong Course Syllabus. offered by Department of Computer Science with effect from Semester A 2015/16

City University of Hong Kong Course Syllabus. offered by Department of Computer Science with effect from Semester A 2015/16 City University of Hong Kong Course Syllabus offered by Department of Computer Science with effect from Semester A 2015/16 Part I Course Overview Course Title: Problem Solving and Programming Course Code:

More information

Bishop State Community College Distance Education Policy

Bishop State Community College Distance Education Policy Bishop State Community College Distance Education Policy Purpose of Distance Education The goal of distance education at Bishop State Community College (BSCC or the College) is to provide students with

More information

MGMT 360 (Hybrid) Organizational Theory

MGMT 360 (Hybrid) Organizational Theory Columbia College Online Campus P a g e 1 MGMT 360 (Hybrid) Organizational Theory Early Fall Session 15/11 August 17 October 10, 2015 Course Description Examination of the foundations, theories, models,

More information

Using MyMathLab. Features

Using MyMathLab. Features Using MyMathLab Features You must already be registered or enrolled in a current MyMathLab class in order to use MyMathLab. If you are not registered or enrolled in a new class, see another PowerPoint

More information

ISM 3254 Business Systems I http://www.cise.ufl.edu/~pjd/

ISM 3254 Business Systems I http://www.cise.ufl.edu/~pjd/ ISM 3254 Business Systems I http://www.cise.ufl.edu/~pjd/ Instructor: Pete Dobbins Office: See Course Schedule on Website E- mail: pjd at cise dot ufl dot edu Hours: See Course Schedule on Website TA:

More information

AP Computer Science A Syllabus

AP Computer Science A Syllabus Course Overview AP Computer Science A Syllabus AP Computer Science A is a course that takes an object oriented and problem solving approach to developing Java programs. It emphasizes object oriented concepts

More information

Syllabus Introduction to C++ Programming and Numerical Analysis Spring 2016

Syllabus Introduction to C++ Programming and Numerical Analysis Spring 2016 Syllabus Introduction to C++ Programming and Numerical Analysis Spring 2016 lead instructor: office: web: class time: Professor Johan Walden F655 walden@haas.berkeley.edu http://www.haas.berkeley.edu/faculty/walden.html

More information

Decision Logic: if, if else, switch, Boolean conditions and variables

Decision Logic: if, if else, switch, Boolean conditions and variables CS 1044 roject 3 Fall 2009 Decision Logic: if, if else, switch, Boolean conditions and variables This programming assignment uses many of the ideas presented in sections 3 through 5 of the Dale/Weems text

More information

CSCE 314 Programming Languages

CSCE 314 Programming Languages CSCE 314 Programming Languages Introduction and Course Administration Dr. Hyunyoung Lee hlee@cse.tamu.edu 410B HR Bright 979-845-2490 1 CSCE 314: Programming Languages Course Homepage http://faculty.cse.tamu.edu/hlee/csce314/

More information

AP Computer Science A - Syllabus Overview of AP Computer Science A Computer Facilities

AP Computer Science A - Syllabus Overview of AP Computer Science A Computer Facilities AP Computer Science A - Syllabus Overview of AP Computer Science A Computer Facilities The classroom is set up like a traditional classroom on the left side of the room. This is where I will conduct my

More information

ENVIRONMENTAL SCIENCE LAB (FOR MAJORS) ESCI 1101. 2) Teach practical skills for use in the lab and field.

ENVIRONMENTAL SCIENCE LAB (FOR MAJORS) ESCI 1101. 2) Teach practical skills for use in the lab and field. ENVIRONMENTAL SCIENCE LAB (FOR MAJORS) ESCI 1101 Course objectives: There are two main purposes to the labs: 1) To show students how different parts of the environment interact, how we measure properties

More information

College of Public Health University of South Florida

College of Public Health University of South Florida Department of Environmental and Occupational Health Syllabus Online Course Name: Principles of Occupational Safety Prefix & Number: PHC 6355 Sections: 1) sect 310/651/951 ref# 55963 for 310 Semester: Summer,

More information

COURSE SYLLABUS. ESE 544/444 Project Management

COURSE SYLLABUS. ESE 544/444 Project Management COURSE SYLLABUS ESE 544/444 Project Management Fall 2006 Department of Systems and Electrical Engineering University of Pennsylvania Class Time and Location: 6 September 6 December 2004 Wednesdays, 4:30

More information

CSE 307: Principles of Programming Languages

CSE 307: Principles of Programming Languages Course Organization Introduction CSE 307: Principles of Programming Languages Spring 2015 R. Sekar Course Organization Introduction 1 / 34 Topics 1. Course Organization Info and Support Course Description

More information

CHEM 1305: SURVEY OF GENERAL CHEMISTRY COURSE INFORMATION

CHEM 1305: SURVEY OF GENERAL CHEMISTRY COURSE INFORMATION CHEM 1305: SURVEY OF GENERAL CHEMISTRY FALL 2014 T/R 3:30 PM 4:45 PM; Keith D McFarland Science Building; STC 122 Instructor: Dr. Tasneem Hossain-Kumar Office Location: STC # 302 Office Hours: T/W 12:00

More information

COURSE OUTLINE. Prerequisites: Course Description:

COURSE OUTLINE. Prerequisites: Course Description: Lab/Recitation Revised Fall 2015 36TITP220 21TJava Programming II COURSE OUTLINE Prerequisites: ITP120 wi ITD130 as a co-requisite or instructor s permission Course Description: Imparts instruction in

More information

RED DEER COLLEGE DEPARTMENT OF HUMANITIES AND SOCIAL SCIENCES ECON 201 C Introduction to Microeconomics Fall 2014

RED DEER COLLEGE DEPARTMENT OF HUMANITIES AND SOCIAL SCIENCES ECON 201 C Introduction to Microeconomics Fall 2014 RED DEER COLLEGE DEPARTMENT OF HUMANITIES AND SOCIAL SCIENCES ECON 201 C Introduction to Microeconomics Fall 2014 Instructor: Naved Ahmad Office: 3102 Phone: 587-998-7779 Email: naved.ahmad@rdc.ab.ca Class:

More information

Wilson Area School District Planned Course Guide

Wilson Area School District Planned Course Guide Wilson Area School District Planned Course Guide Title of planned course: Introduction to Computer Programming Subject Area: Business Grade Level: 9-12 Course Description: In this course, students are

More information

I. PREREQUISITES For information regarding prerequisites for this course, please refer to the Academic Course Catalog.

I. PREREQUISITES For information regarding prerequisites for this course, please refer to the Academic Course Catalog. Note: Course content may be changed, term to term, without notice. The information below is provided as a guide for course selection and is not binding in any form, and should not be used to purchase course

More information

I. PREREQUISITES For information regarding prerequisites for this course, please refer to the Academic Course Catalog.

I. PREREQUISITES For information regarding prerequisites for this course, please refer to the Academic Course Catalog. Note: Course content may be changed, term to term, without notice. The information below is provided as a guide for course selection and is not binding in any form, and should not be used to purchase course

More information

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

Canisius College Computer Science Department Computer Programming for Science CSC107 & CSC107L Fall 2014 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

More information

Course Syllabus: English 1301 Section 2P and Section 6P Dual Credit

Course Syllabus: English 1301 Section 2P and Section 6P Dual Credit Course Syllabus: English 1301 Section 2P and Section 6P Dual Credit Instructor: Janis May NOTE: This syllabus is subject to change during the semester. Please check this syllabus on a regular basis for

More information

Department of Electrical and Computer Engineering. EEL 3160 Embedded C++ and Data Structures. Tuesday & Thursday 3:00 5:00 pm

Department of Electrical and Computer Engineering. EEL 3160 Embedded C++ and Data Structures. Tuesday & Thursday 3:00 5:00 pm Department of Electrical and Computer Engineering EEL 3160 Embedded C++ and Data Structures Instructor : Dr. Herman Watson Office Hours : by appointment Monday 9:30-11:00 AM Tuesday & Thursday 3:00 5:00

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

Business Ethics (BUS 105) Cycle II, Spring, 2012 Semester

Business Ethics (BUS 105) Cycle II, Spring, 2012 Semester Business Ethics (BUS 105) Cycle II, Spring, 2012 Semester Phone: E Mail: Office: Office Hours: Course Description: This course is designed for the student with an interest in organizational and business

More information

SYLLABUS Fall 2013 MATH 115 ELEMENTARY STATISTICS. Class Section Name (on WileyPlus):

SYLLABUS Fall 2013 MATH 115 ELEMENTARY STATISTICS. Class Section Name (on WileyPlus): SYLLABUS Fall 2013 MATH 115 ELEMENTARY STATISTICS Instructor: Email: Class Section Name (on WileyPlus): Class Section URL (on WileyPlus): http://edugen.wiley.com/edugen/class/cls.../ REQUIRED TEXT/SOFTWARE:

More information

Mobile Application Development ITP 342 (3 Units)

Mobile Application Development ITP 342 (3 Units) Mobile Application Development ITP 342 (3 Units) Spring 2013 Objective This course teaches how to develop applications for mobile devices such as iphones and ipads (ios). We will go through the process

More information

CompuScholar, Inc. Alignment to Utah's Computer Programming II Standards

CompuScholar, Inc. Alignment to Utah's Computer Programming II Standards CompuScholar, Inc. Alignment to Utah's Computer Programming II Standards Course Title: TeenCoder: Java Programming Course ISBN: 978 0 9887070 2 3 Course Year: 2015 Note: Citation(s) listed may represent

More information

Abuse and Illness in Families

Abuse and Illness in Families Abuse Illness in Families HDFS 367xw: Spring 2013 *Syllabus is subject to change without notice* Instructor: Sarah Bickelhaupt M.S. Office Location: 51B LeBaron E-mail: filly@iastate.edu Office Hours:

More information

SI 539, Winter 2014 Complex Web Design

SI 539, Winter 2014 Complex Web Design SI 539, Winter 2014 Complex Web Design Lecture: Wednesday 1:00-4:00pm Office Hours*: Tuesdays 12:00pm 2:00pm *Please check my Google Calendar for updates http://collemc.people.si.umich.edu/ Instructor:

More information

Chemistry 511 Inorganic Chemistry Fall 2004 KEEP THIS SYLLABUS FOR FUTURE REFERENCE

Chemistry 511 Inorganic Chemistry Fall 2004 KEEP THIS SYLLABUS FOR FUTURE REFERENCE Chemistry 511 Inorganic Chemistry Fall 2004 KEEP THIS SYLLABUS FOR FUTURE REFERENCE Inorganic Chemistry: Lecture: 3 credit hours 11:00 11:50 am M,W,F, 2373 Chemistry * Lecturer: Nguyet T. Tran Phone Number:

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

William Paterson University of New Jersey Department of Computer Science College of Science and Health Course Outline

William Paterson University of New Jersey Department of Computer Science College of Science and Health Course Outline William Paterson University of New Jersey Department of Computer Science College of Science and Health Course Outline 1. TITLE OF COURSE AND COURSE NUMBER: Object-Oriented Programming in Java, CIT 2420

More information

WILLIAM PATERSON UNIVERSITY Department of English ENG 2070: Effective Business Writing Winter Semester: December 22, 2014 January 11, 2014

WILLIAM PATERSON UNIVERSITY Department of English ENG 2070: Effective Business Writing Winter Semester: December 22, 2014 January 11, 2014 WILLIAM PATERSON UNIVERSITY Department of English ENG 2070: Effective Business Writing Winter Semester: December 22, 2014 January 11, 2014 Instructor: Contact Info: Dr. Liane Robertson RobertsonL10@wpunj.edu

More information

Texas A&M-Commerce Department of Social Work. SWK 590: Research Literature and Techniques Monday 6:00 p.m. - 9:00 p.m. Commerce Campus FALL 2012

Texas A&M-Commerce Department of Social Work. SWK 590: Research Literature and Techniques Monday 6:00 p.m. - 9:00 p.m. Commerce Campus FALL 2012 Texas A&M-Commerce Department of Social Work SWK 590: Research Literature and Techniques Monday 6:00 p.m. - 9:00 p.m. Commerce Campus FALL 2012 INSTRUCTOR INFORMATION INSTRUCTOR Brenda Moore, Ph.D., LMSW-AP

More information

El Dorado Union High School District Educational Services

El Dorado Union High School District Educational Services El Dorado Union High School District Course of Study Information Page Course Title: ACE Computer Programming II (#495) Rationale: A continuum of courses, including advanced classes in technology is needed.

More information

MAC2233, Business Calculus Reference # 722957, RM 2216 TR 9:50AM 11:05AM

MAC2233, Business Calculus Reference # 722957, RM 2216 TR 9:50AM 11:05AM Instructor: Jakeisha Thompson Email: jthompso@mdc.edu Phone: 305-237-3347 Office: 1543 Office Hours Monday Tuesday Wednesday Thursday Friday 7:30AM 8:15AM 12:30PM 2:00PM 7:30AM 9:30AM 7:30AM 8:15AM 12:30PM

More information