CIS 3655 COBOL PROGRAMMING Spring 2009 OBJECTIVE

Size: px
Start display at page:

Download "CIS 3655 COBOL PROGRAMMING Spring 2009 OBJECTIVE"

Transcription

1 CIS 3655 COBOL PROGRAMMING Spring 2009 OBJECTIVE Course Description: Major emphasis will be on development of logical solutions to business problems and the development of programs on on-line terminals with job control. Business data will be processed using COBOL (Common Business Oriented Language) on mainframe IBM systems and on PCs. Course Objectives: Upon successful completion of this course, students will be able to: 1) express knowledge of COBOL language history and program fundamentals (Exam 1, part 1). 2) use the mainframe and PC platforms to create COBOL source and Job Control Language (JCL) files (Project 1) 3) create simple COBOL programs that access input/output files, specify Working Storage variables and create printed output. (Program 2; Exam 1, part 2; Exam 2, part 1) 4) create simple COBOL programs that manipulate arithmetic data and implement selection structures. (Program 3; Exam 2, part 3) 5) write a COBOL program which implement single and/or multiple control breaks. (Program 4; Exam 3, parts 1 & 2) 6) use single and double subscripted tables as tools (Program 5; Exam 3, part 3; Final, part 2) 7) structure the solution of a computer problem using top-down technique (Programs 2-6). 8) demonstrate knowledge of EBCDIC/ASCII, numeric data in packed, binary, and floating point formats and formatted printed output (Exam 2, part 2) 9) discuss the use of SORT/MERGE, COPY, CALL, index sequential files, random files and object-oriented programming, within COBOL (as time permits) (Program 6, Final exam, part 3) 10) integrate various COBOL programming constructs into a program that meets given specifications (Final exam, part 1) 11) use program design tools to derive a COBOL business solution (Programs 1 & 2). RESOURCES Instructor: Kerry Henson, PhD Office hours: Office: DOC 300C MW 11:00-12:00 Phone: 660/ TR 9:30-10:45 klh84060@ucmo.edu and by appointment Website: Textbook: Murach s Mainframe COBOL by Murach, Prince and Menendez Purchase: (1) System/370 Reference Summary (Optional) (2) Flowchart template (R-54 or R-550) (Optional) (3) COBOL coding tablet (Optional) (4) Printouts in the lab (an ongoing expense) (5) PC COBOL compiler (Optional) (6) Terminal emulation software (free) (7) One scantron (882 or 883)

2 EXPECTATIONS Course Requirements: 1. You are responsible for reading each chapter and preparing assignments from the text. All assignments are due on the date specified by the instructor. 2. All writing assignments must be typed unless otherwise specified by the instructor. The computer lab is available for programming and students are encouraged to use the computers. 3. Output from all final versions of the programming assignments must have been run on the mainframe. Although PC-based editors and compilers may be used in program development, final versions must run on the mainframe, unless specified otherwise. Program One also requires output from the PC. Attendance: This class is important. You are expected to attend class and participate in class discussions. There tends to be a strong correlation between class attendance and final grade. Obtaining notes missed because of a class absence is your responsibility. It is a good idea to obtain a classmate's phone number for this purpose. Being late for class is not fashionable. It disrupts the class activities. Tardiness will result in a recorded absence, if attendance is taken. Each individual is expected to make whatever arrangements are necessary to arrive in class on time. If you decide to discontinue attending, then drop the course. If the course is not dropped, a course grade will be assigned based upon the number of points obtained. Honesty: University policy deals severely with students caught cheating, copying papers or programs, or participating in dishonest behavior. It is alright to discuss conceptual aspects of the projects with other people; however, do not key your assignment from someone else's work, do not allow someone key your assignment, do not allow anyone to dictate keystrokes to you, do not copy another person's project files onto your account/disk and do not work with someone else to create the same solution, in part or as a whole. All written work is to be unique to you. No reference material may be used during an examination unless provided by the instructor. The instructor may use electronic tools to check for plagiarism. Such tools may be web-based and require that the student s submission be copied to a database maintained by a third party. If a student is suspected of dishonesty, the student will be notified. Any questions and explanations should be directed to the instructor. A meeting with the instructor may be scheduled. Responses to such an offense may include a zero on the assignment or test, a grade of "F" in the course, or recommendation for removal from the degree program. All instances of dishonesty will be reported to the Vice President for Student Affairs. For more information see the University Calendar/Handbook. Class Etiquette: Use of electronic communication devices is not allowed. Do not simply place devices in silent mode, but TURN OFF cell phones, Blackberries, etc. Anyone whose phone goes off in class will be required to stand and dance to the music. (I m serious!) Please remove visors and caps. I want to see your face.

3 Use of Computing Resources: When using university computing and network resources students are required to comply with the acceptable use policy (AUP) as set forth by the University and MORENet. For more information see the University Calendar/Handbook. ACTIVITIES AND ASSESSMENTS Tests and Homework: Grading: 4 exams 150 pts. ea. 60% 90%-100% =A Programs/Assignments/Quizzes 40% 80%-89% = B ==== 70%-79% = C Total 100% 60%-69% = D 0%-59% = F Tests will consist of multiple choice, matching, and/or true/false items. In addition, short answer questions may also be included. Writing complete or partial COBOL programs will be required. The nature of this course dictates that each exam is somewhat comprehensive. Exam four (the final) will be a limited comprehensive exam as specified in class. Homework will consist of programs completed in the lab and other outside written assignments. Homework is due at the beginning of that period. Homework not turned in at the beginning of class will be considered late. Written assignments turned in within 48 hours after the beginning of class or by the stated closing of the late window will receive an initial 25% reduction before being graded as other projects. Written homework not received by the late deadline will not be accepted. Programs must compile without errors to be accepted. Announced and unannounced quizzes will be given during the course of the semester. These will cover material addressed in the previous class period or the reading assignment for that class period. The final will include a two-plus-hour, hands-on competency in the lab. Students will be required to create a running COBOL program with the PC compiler without outside help. An inappropriate solution, i.e., one that suggests the student has gained virtually no skills in writing a program, as deemed by the instructor, will result in an F for the course. Exams, quizzes, and homework may be made-up in the case of an extreme emergency (as deemed by the instructor) or a university excused absence. In either case the instructor must be notified before class, a Request for an Excused Absence form must be completed, and support documentation must be provided. On occasion an end-of-the-semester curve is applied to all grades in the class; however, to be eligible for the curve the student must have completed all projects, taken all exams and quizzes, and not have an excessive number of absences.

4 Schedule of Topics (Very Tentative) Date Topics Activities Jan 14 - Feb 9 Feb 18 Feb 11 - Feb 25 Mar 4 Mar 2 - Mar 25 Overview of the course. Introduction to the IBM programming environment. Use of , Xedit. Basic structure of COBOL programs and JCL. Contents of each DIVISION. Program specification & documentation. Structured techniques. Debugging. EXAMINATION ONE Moving data. Edited fields. Data formats. Arithmetic verbs. Selection structures. Sequential file update. EXAMINATION TWO Iteration structures. Single and multiple control break processing. Read chapters 1, 18, 2-4, 17; Programs 1 & 2; assignments Read chapters 5 (pages & ), 6-9, 12, 13; Program 3; assignments Read chapter 4 & 5 (pages & ); Program 4; assignments Apr 6 Mar 30 - Apr 29 May 4 at 2:00 EXAMINATION THREE Single and multi-dimensional arrays/tables. Subscripts and indexes. Searching tables. Extra topics as assigned. EXAMINATION (Hands-on) Note: Final may exceed two hours Read chapter 10; Read Chapters 11, 14, 15, 16, 19, 20 & 21, as assigned; Programs 5 & 6; assignments

5 EXCEPTION REQUEST FORM Course: Date: Name: I request (please check): To make up an absence (official excused) To turn in a late assignment as on-time Identify Assignment: Justification: Attached documentation includes: (INSTRUCTOR USE ONLY) Requirements: Due date:

6

7 Name (print): Course: Section: STATEMENT OF UNDERSTANDING In signing this statement I am stating that I understand all points presented in the syllabus and that I have completed all the prerequisites for this course. Signature: Date: POSTING OF GRADES A student's course grade falls under federal privacy laws. You may choose to have your grades posted. Grades in this course will be posted by a special number assigned to you. Your social security number will not be used. Please indicate your preference below. I prefer my grades be posted not be posted Signature: Date:

SYLLABUS: MKT 454.022, Monday evening 4:00-6:30pm; BU124 Spring Semester, 2012

SYLLABUS: MKT 454.022, Monday evening 4:00-6:30pm; BU124 Spring Semester, 2012 SYLLABUS: MKT 454.022, Monday evening 4:00-6:30pm; BU124 Spring Semester, 2012 Course: Marketing 454, Business-To- Business Marketing, 3 credit hours Department of Management, Marketing, and International

More information

Drop Policy: A course drop grade will be assigned in accord with UTA policy (see current catalog).

Drop Policy: A course drop grade will be assigned in accord with UTA policy (see current catalog). Course: Psychology 1315 Spring 2011, Section 004 Meeting place and time: Instructor: Office & Telephone: Office Hours: Email: Department website: Life Sciences Bldg Room 122; Tu & Th 9:30AM 10:50AM Linda

More information

Dr. Angela Guercio. Spring 2011

Dr. Angela Guercio. Spring 2011 CS 33101 Structure of Programming Languages Dr. Angela Guercio Spring 2011 Instructor Angela Guercio Office: 424, Main Hall Phone: 330 244 3424 (KSU ext 53424) Best way to contact me: aguercio@kent.edu

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

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

Imperial Valley College Course Syllabus - Elementary Differential Equations Math 220

Imperial Valley College Course Syllabus - Elementary Differential Equations Math 220 Basic Course Information Semester Spring 2015 Instructor Name Jill Nelipovich Course Title & # Math 220 Email jill.nelipovich@imperial.edu CRN # 20395 Webpage Blackboard site Room 2722 Office Room 2768

More information

Systems and Internet Marketing Syllabus Spring 2011 Department of Management, Marketing and International Business

Systems and Internet Marketing Syllabus Spring 2011 Department of Management, Marketing and International Business Systems and Internet Marketing Syllabus Spring 2011 Department of Management, Marketing and International Business MKT 425.022 (3 credit hour class) Wednesday, 4:00 6:30 pm, BU 465 Instructor: Dr. Charlotte

More information

MGSC 590 Information Systems Development Course Syllabus for Spring 2008

MGSC 590 Information Systems Development Course Syllabus for Spring 2008 MGSC 590 Information Systems Development Course Syllabus for Spring 2008 Tue and Thu 2:00 p.m. - 3:15 p.m. Room 463, College of Business Administration http://dmsweb.moore.sc.edu/mgsc590/ Instructor: Dr.

More information

I INF 300: Probability and Statistics for Data Analytics (3 credit hours) Spring 2015, Class number 9873

I INF 300: Probability and Statistics for Data Analytics (3 credit hours) Spring 2015, Class number 9873 I INF 300: Probability and Statistics for Data Analytics (3 credit hours) Spring 2015, Class number 9873 Instructor: Norman Gervais Office location: BA 313 Office hours: Mondays 11:30-1:00 and Wednesdays

More information

SYLLABUS CIS 3660: OBJECT-ORIENTED SYSTEM ANALYSIS AND DESIGN SPRING 2010

SYLLABUS CIS 3660: OBJECT-ORIENTED SYSTEM ANALYSIS AND DESIGN SPRING 2010 SYLLABUS CIS 3660: OBJECT-ORIENTED SYSTEM ANALYSIS AND DESIGN SPRING 2010 Instructor: Dr. Silvana Faja Office: WDE 2400 Office Hours: 9:30 10:45 and 1:30 3:00, Tuesday and Thursday and by appointment Office

More information

MTH 110: Elementary Statistics (Online Course) Course Syllabus Fall 2012 Chatham University

MTH 110: Elementary Statistics (Online Course) Course Syllabus Fall 2012 Chatham University MTH 110: Elementary Statistics (Online Course) Course Syllabus Fall 2012 Chatham University Meeting Times: Online course Instructor: Mr. John Wenskovitch Email: jwenskovitch@chatham.edu Office: Buhl 218

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

Organizational Communication Training and Development Spring 2003. Office Hours: MWF 10:30 11:00, 12:00 1:00 and 4:15 5:30 p.m. and by appointment

Organizational Communication Training and Development Spring 2003. Office Hours: MWF 10:30 11:00, 12:00 1:00 and 4:15 5:30 p.m. and by appointment Organizational Communication Training and Development Spring 2003 Comm 45865:11748-001 Mon, Wed, and Fri 1:10 2:00 pm Instructor: Dr. Rozell Duncan Office Phone: (330) 672-0184 Dept. Phone: (330) 672-2659

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

Research Methods in Advertising and Public Relations COMM 420 Spring 2012 120 Earth & Eng. Sci. W/F 12:20 PM to 2:15 PM

Research Methods in Advertising and Public Relations COMM 420 Spring 2012 120 Earth & Eng. Sci. W/F 12:20 PM to 2:15 PM Research Methods in Advertising and Public Relations COMM 420 Spring 2012 120 Earth & Eng. Sci. W/F 12:20 PM to 2:15 PM The Pennsylvania State University Department of Advertising and Public Relations

More information

MONTGOMERY COLLEGE Rockville Campus CA141 Introduction to Database Applications Computer Applications Department

MONTGOMERY COLLEGE Rockville Campus CA141 Introduction to Database Applications Computer Applications Department MONTGOMERY COLLEGE Rockville Campus CA141 Introduction to Database Applications Computer Applications Department Instructor Information Name: Mailbox Location: HU016 - see Office Assistant Email: profmathews@comcast.net

More information

College of Southern Maryland Fundamentals of Accounting Practice(ACC 1015) Course Syllabus Spring 2015

College of Southern Maryland Fundamentals of Accounting Practice(ACC 1015) Course Syllabus Spring 2015 INSTRUCTOR: College of Southern Maryland Fundamentals of Accounting Practice(ACC 1015) Course Syllabus Spring 2015 Bonnie Harrison Office - Room #228 (PFA) Office Hours: Tuesdays: 9:00am 10:00am Wednesday:

More information

SYLLABUS MIS 6713: Delivering Business Value through Information Systems Fall 2014

SYLLABUS MIS 6713: Delivering Business Value through Information Systems Fall 2014 SYLLABUS MIS 6713: Delivering Business Value through Information Systems Fall 2014 Instructor Office Office Hours Phone Email John R. Drake, PhD Slay 332 TTh, 9:00-11:30 252-737-4566 drakejo@ecu.edu AM

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

INFO 3130 008 Management Information Systems Spring 2015

INFO 3130 008 Management Information Systems Spring 2015 INFO 3130 008 Management Information Systems Spring 2015 INSTRUCTOR: Dr. Sungjune Park OFFICE: 353B Friday PHONE: (704) 687-7628 EMAIL: supark@uncc.edu OFFICE HOURS: Tue & Thu 12:20pm 1:50pm and by appointment

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

COM 1010, Basic Web Design

COM 1010, Basic Web Design Revised: April 2015 Nashville State Community College Business & Applied Arts Division (Visual Communications) Master Course Syllabus COM 1010, Basic Web Design 3 Credits 3 Class Hours Course Description:

More information

TA contact information, office hours & locations will be posted in the Course Contacts area of Blackboard by end of first week.

TA contact information, office hours & locations will be posted in the Course Contacts area of Blackboard by end of first week. Carnegie Mellon The Heinz College 95-774 Business Process Modeling Syllabus and Policies Spring 2016, mini 3 Instructor Karyn Moore Office: 3014 Hamburg Hall Office Hours: See Course Contacts on Blackboard

More information

Database Management Systems ISM 4212 (3 Credit Hours) Fall 2011

Database Management Systems ISM 4212 (3 Credit Hours) Fall 2011 Database Management Systems ISM 4212 (3 Credit Hours) Fall 2011 Professor Ms. Sue Carter Course Day Office Location Course Time Office Phone Course Location E-Mail carter@fau.edu Blackboard http://blackboard.fau.edu

More information

Multimedia 320 Syllabus

Multimedia 320 Syllabus Course information Web Design I Multimedia 320 Section Number 1538 Fall 2013 FA 304 Instructor / Contact Information Brian Olson FA 304 Office Please email me for in person appointments olsonbj@wlac.edu

More information

Psych 204: Research Methods in Psychology

Psych 204: Research Methods in Psychology Psych 204: Research Methods in Psychology Spring 2003 Professor: Nancy Darling, Ph.D. Office: 108 Preston Hall e-mail: darling@bard.edu Home phone: 876-3583 Please don't call before 8:00AM or after 11:00PM.

More information

Nashville State Community College Business, Applied Arts & Technologies Division Computer Aided Drafting & Design. Master Course Syllabus

Nashville State Community College Business, Applied Arts & Technologies Division Computer Aided Drafting & Design. Master Course Syllabus Revised: Spring 2013 Nashville State Community College Business, Applied Arts & Technologies Division Computer Aided Drafting & Design Master Course Syllabus CAD 1301 COMPUTER-AIDED DRAFTING II 3 Credits

More information

ACCT 3103 Intermediate Accounting I Oklahoma State University Spring 2015

ACCT 3103 Intermediate Accounting I Oklahoma State University Spring 2015 ACCT 3103 Intermediate Accounting I Oklahoma State University Spring 2015 Instructor: Angela Wheeler Spencer, PhD, CPA Office: Business 428 Telephone: 744-2863 (Please send an e-mail if you are unable

More information

Social Psychology Syllabus

Social Psychology Syllabus Social Psychology Syllabus PSYC 307/001 Spring 2014 Lecture: MWF 12:00-12:50 p.m. in Wham 105 Instructor: Rebecca Kietlinski. M.A. Office Location: Life Science II Rm. 275F Office Hours: 10:00 a.m. to

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

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

University of Regina Faculty of Business Administration Management of Performance. BUS 361-001 Winter 2013: January 7, 2013 April 17, 2013

University of Regina Faculty of Business Administration Management of Performance. BUS 361-001 Winter 2013: January 7, 2013 April 17, 2013 University of Regina Faculty of Business Administration Management of Performance BUS 361-001 Winter 2013: January 7, 2013 April 17, 2013 Instructor: Caroline Graves Phone: (306) 787-3562 - daytime (306)

More information

MAT 1111: College Algebra: CRN 30500 SPRING 2013: MWF 11-11:50: GRAY 208

MAT 1111: College Algebra: CRN 30500 SPRING 2013: MWF 11-11:50: GRAY 208 MAT : College Algebra: CRN 30500 SPRING 2013: MWF -:50: GRAY 20 Course Syllabus: Please read this document completely. Instructor Information: Name: Connie High Office Phone: 9-391- 52 Office: Britt Hall,

More information

Texas A&M University-Commerce Syllabus - Principles of Accounting I - Acct 221.01E - 20755

Texas A&M University-Commerce Syllabus - Principles of Accounting I - Acct 221.01E - 20755 Texas A&M University-Commerce Syllabus - Principles of Accounting I - Acct 221.01E - 20755 Course Time and Location: TR 9:30 AM 10:45 AM, BA 106 Instructor: E-mail: Phone: Office Hours: Annette Taggart,

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

EXPECTED LEARNING OUTCOMES:

EXPECTED LEARNING OUTCOMES: PCCUA 1 Course Name: COLLEGE ALGEBRA Course Number: MS 123 ACTS Course: MATH 1103 (transferable) Semester and Year: Fall 2015 Meeting Place: C103 Meeting Time: Tues/Thurs 11:00a-12:20p Prerequisites: 19+

More information

SYLLABUS CNBT 1359 PROJECT SCHEDULING

SYLLABUS CNBT 1359 PROJECT SCHEDULING SYLLABUS CNBT 1359 PROJECT SCHEDULING COURSE DESCRIPTION A study of conventional scheduling using critical path method; precedence networks; bar charts; monthly reports; and fast track scheduling. Includes

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

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

Syllabus Systems Analysis and Design Page 1 of 6

Syllabus Systems Analysis and Design Page 1 of 6 Syllabus Systems Analysis and Design Page 1 of 6 Austin Community College Department of Computer Studies and Advanced Technology Systems Analysis and Design ITSE1450-543 (capstone course) Syllabus Spring

More information

SOC 101 Introduction to Sociology Social & Behavioral Sciences Department

SOC 101 Introduction to Sociology Social & Behavioral Sciences Department SOC 101 Introduction to Sociology Social & Behavioral Sciences Department Catalog Course Description: This course emphasizes the fundamental concepts and principles of sociology, including culture, socialization,

More information

COURSE DESCRIPTION AND PREREQUISITES

COURSE DESCRIPTION AND PREREQUISITES ACCT 204 Managerial Accounting The College of Charleston Spring 2014 Classes: Section: 07 Tues./Thurs. 9:25am-10:40am Tate 315 06 - Tues./Thurs 10:50 am 12:05pm Tate 315 Instructor: Gerry H. Grant, Ph.D.,

More information

Nashville State Community College Business & Applied Arts Division Visual Communications/ Photography

Nashville State Community College Business & Applied Arts Division Visual Communications/ Photography Nashville State Community College Business & Applied Arts Division Visual Communications/ Photography PHO 1115: History of Photography Master Course Syllabus Course Description: An introduction to the

More information

IST359 INTRODUCTION TO DATABASE MANAGEMENT SYSTEMS

IST359 INTRODUCTION TO DATABASE MANAGEMENT SYSTEMS IST359 INTRODUCTION TO DATABASE MANAGEMENT SYSTEMS 1. COURSE DETAILS COURSE (SECTION): IST359 (M005) TERM: Fall 2012 INSTRUCTOR: Yang Wang PHONE: 443-3744 (Office) OFFICE: Hinds 342 EMAIL: ywang@syr.edu

More information

CSC122/CYEN122: Intermediate Computer Programming

CSC122/CYEN122: Intermediate Computer Programming CSC122/CYEN122: Intermediate Computer Programming Fall 2013 Description: Per the catalog: Analysis, design and implementation of programs. Application structures, algorithm development, eventdriven programming,

More information

BAKERSFIELD COLLEGE. Elementary Probability and Statistics. Math B22 CRN 31535 SPRING 2016

BAKERSFIELD COLLEGE. Elementary Probability and Statistics. Math B22 CRN 31535 SPRING 2016 BAKERSFIELD COLLEGE Elementary Probability and Statistics Math B22 CRN 31535 SPRING 2016 Instructor : Ms. Sabol Class Hours : TTH 5:30 PM 7:35 PM Classroom : Delano Science and Tech Center 1105 Text :

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

Riverside City College Arithmetic-Pre-Algebra/Math 65 (48422), Fall 2014 MTSC 103-MTWTh: 06:00PM - 07:10PM

Riverside City College Arithmetic-Pre-Algebra/Math 65 (48422), Fall 2014 MTSC 103-MTWTh: 06:00PM - 07:10PM Riverside City College Arithmetic-Pre-Algebra/Math 65 (48422), Fall 2014 MTSC 103-MTWTh: 06:00PM - 07:10PM Instructor: Jesús Magaña Email: Jesus.Magana@rcc.edu Welcome to Mathematics: The course will cover

More information

UNIVERSITY OF MASSACHUSETTS BOSTON COLLEGE OF MANAGEMENT AF 325 - Theory of Finance SYLLABUS Spring 2013

UNIVERSITY OF MASSACHUSETTS BOSTON COLLEGE OF MANAGEMENT AF 325 - Theory of Finance SYLLABUS Spring 2013 UNIVERSITY OF MASSACHUSETTS BOSTON COLLEGE OF MANAGEMENT AF 325 - Theory of Finance SYLLABUS Spring 2013 Meeting time: Section 01 (1380) Mondays and Wednesdays, 4.00pm 5.15pm Room: McCormack 02-0404 Instructor:

More information

Systems and Internet Marketing Syllabus Fall 2012 Department of Management, Marketing and International Business

Systems and Internet Marketing Syllabus Fall 2012 Department of Management, Marketing and International Business Systems and Internet Marketing Syllabus Fall 2012 Department of Management, Marketing and International Business MKT 425.001 (3 credit hour class) Monday and Wednesday, 11:00 am 12:15 m, BU 127 Instructor:

More information

Other Requirements: USB drive, Internet Access and a campus e-mail address.

Other Requirements: USB drive, Internet Access and a campus e-mail address. Course Number/Title: AC219 QuickBooks Year: Fall 2012 Department: Business Credit Hours: 3 Required Text: Kay, Donna. (2012). Computer Days/Time: TR 2:00-3:20 p.m. Accounting with QuickBooks 2012, Fourteenth

More information

MAT 103B College Algebra Part I Winter 2016 Course Outline and Syllabus

MAT 103B College Algebra Part I Winter 2016 Course Outline and Syllabus MAT 103B College Algebra Part I Winter 2016 Course Outline and Syllabus Instructor: Meeting Venue: Email: Caren LeVine Monday/Wednesday 6pm 7:50pm, E106 celevine@mail.ltcc.edu Office Hours (Outside The

More information

PSY 201 General Psychology Social & Behavioral Sciences Department

PSY 201 General Psychology Social & Behavioral Sciences Department PSY 201 General Psychology Social & Behavioral Sciences Department Catalog Course Description: This course includes the following topics and concepts in the science of behavior: scientific method, biological

More information

SOUTHWEST COLLEGE Department of Mathematics

SOUTHWEST COLLEGE Department of Mathematics SOUTHWEST COLLEGE Department of Mathematics COURSE SYLLABUS MATH 1314: College Algebra INSTRUCTOR: E-MAIL: Fatemeh Salehibakhsh f.salehibakhsh@hccs.edu Office Hours M - W 2:30 3:00 PM Friday 11:00 AM 2:00

More information

PSY 350 ABNORMAL PSYCHOLOGY SPRING 2011

PSY 350 ABNORMAL PSYCHOLOGY SPRING 2011 PSY 350 Spring 2011 Page 1 of 5 PSY 350 ABNORMAL PSYCHOLOGY SPRING 2011 Course Information Instructor Information Title: Psy 350 Name: Dr. Sawssan Ahmed Reference Number: 22542 Phone: (858) 966-7703 ext.

More information

Peru State College, Peru, NE. MGMT 602 Research Methods. Master of Science in Organizational Management. Syllabus Spring Semester 2014

Peru State College, Peru, NE. MGMT 602 Research Methods. Master of Science in Organizational Management. Syllabus Spring Semester 2014 Peru State College, Peru, NE MGMT 602 Research Methods Master of Science in Organizational Management Syllabus Spring Semester 2014 Instructor: Office Hours: Office Telephone: Email Address: Course Meets:

More information

Decision Sciences 101 - Data Analysis for Managers

Decision Sciences 101 - Data Analysis for Managers Spring 2013 CALIFORNIA STATE UNIVERSITY, SACRAMENTO School of Business Administration Decision Sciences 101 - Data Analysis for Managers COURSE OUTLINE INSTRUCTOR: Dr. Stanley A. Taylor OFFICE: TAH -2096

More information

Social Marketing. MGT 3250Y Fall 2013 Fridays 6:00 8:50 p.m. Room: S4037. gregmarsh-uleth@hotmail.com greg.marsh@uleth.ca

Social Marketing. MGT 3250Y Fall 2013 Fridays 6:00 8:50 p.m. Room: S4037. gregmarsh-uleth@hotmail.com greg.marsh@uleth.ca Social Marketing MGT 3250Y Fall 2013 Fridays 6:00 8:50 p.m. Room: S4037 Instructor: Greg Marsh Office Hours: gregmarsh-uleth@hotmail.com greg.marsh@uleth.ca Fridays 5:00-5:50pm or by appointment Text:

More information

MATH 2412 PRECALCULUS SPRING 2015 Synonym 26044, Section 011 MW 12:00-1:45, EVC 8106

MATH 2412 PRECALCULUS SPRING 2015 Synonym 26044, Section 011 MW 12:00-1:45, EVC 8106 MATH 2412 PRECALCULUS SPRING 2015 Synonym 26044, Section 011 MW 12:00-1:45, EVC 8106 INSTRUCTOR: Carolynn Campbell Reed EMAIL: creed@austincc.edu WEBSITE: http://www.austincc.edu/creed PHONE/OFFICE: 223-5825

More information

FIN 4550-1001 (MBA 5520-5001) FINANCIAL MODELING Spring 2014. Office Phone: 372-9148 Office Hours: 3:00-4:00pm Tuesday/Thursday or by appointment

FIN 4550-1001 (MBA 5520-5001) FINANCIAL MODELING Spring 2014. Office Phone: 372-9148 Office Hours: 3:00-4:00pm Tuesday/Thursday or by appointment 1 FIN 4550-1001 (MBA 5520-5001) FINANCIAL MODELING Spring 2014 Instructor: Mingsheng Li Office Phone: 372-9148 Office Hours: 3:00-4:00pm Tuesday/Thursday or by appointment Office No.: Rm. 210 BA Class

More information

Syllabus -- Spring 2016 Juvenile Justice (CRJU 3310 -- CRN 7031)

Syllabus -- Spring 2016 Juvenile Justice (CRJU 3310 -- CRN 7031) Syllabus -- Spring 2016 Juvenile Justice (CRJU 3310 -- CRN 7031) 1. GENERAL INFORMATION Title: Juvenile Justice Instructor: John Stuart Batchelder, 309 Hansford Hall, 706-864 1907 (office) College: Arts

More information

Course Syllabus PEHR 2990 Intro to Intercollegiate Athletic Administration Dixie State College of Utah Spring 2013

Course Syllabus PEHR 2990 Intro to Intercollegiate Athletic Administration Dixie State College of Utah Spring 2013 Course Syllabus PEHR 2990 Intro to Intercollegiate Athletic Administration Dixie State College of Utah Spring 2013 Instructor: Jason Herbers Office: North Instructional Building 107 Office Hours: 10:00-11:00

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

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

College of Business Department of Accounting and Management Information Systems

College of Business Department of Accounting and Management Information Systems College of Business Department of Accounting and Management Information Systems Syllabus for ACCT530 Financial Planning, Control and Performance Evaluation Using SAP Spring 2012 Instructor Nancy Jones,

More information

EMPORIA STATE UNIVERSITYSCHOOL OF BUSINESS Department of Accounting and Information Systems. IS213 A Management Information Systems Concepts

EMPORIA STATE UNIVERSITYSCHOOL OF BUSINESS Department of Accounting and Information Systems. IS213 A Management Information Systems Concepts EMPORIA STATE UNIVERSITYSCHOOL OF BUSINESS Department of Accounting and Information Systems IS213A Course Syllabus Spring 2013 MISSION STATEMENT: The School of Business prepares a diverse student body

More information

FACULTY OF MANAGEMENT PROFESSIONAL CONSULTING MGMT 3901 Y SPRING 2016

FACULTY OF MANAGEMENT PROFESSIONAL CONSULTING MGMT 3901 Y SPRING 2016 FACULTY OF MANAGEMENT PROFESSIONAL CONSULTING MGMT 3901 Y SPRING 2016 Tuesdays, 6:00pm-8:50pm Room: S4027 INSTRUCTOR OFFICE HOURS Shawn DeGreeve shawn.degreeve@uleth.ca 403.650.6118 Tuesdays 5:00-5:50pm

More information

ACG 3151-003 (10061) INTERMEDIATE THEORY III (3 credit hours) Tentative Syllabus spring 2012 Class hours: Wednesdays, 7:10 p.m. 10:00 p.m.

ACG 3151-003 (10061) INTERMEDIATE THEORY III (3 credit hours) Tentative Syllabus spring 2012 Class hours: Wednesdays, 7:10 p.m. 10:00 p.m. INTERMEDIATE THEORY III (3 credit hours) Tentative Syllabus spring 2012 Class hours: Wednesdays, 7:10 p.m. 10:00 p.m. LA 234 Instructor George R. Young II, PhD, CPA Phone: (954) 236-1195 E-mail: gyoung@fau.edu

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

Principles of Financial Accounting Bus 210

Principles of Financial Accounting Bus 210 Basic Course Information Semester Fall Instructor Name Todd Hansink Course Title & # Bus 210 Email todd.hansink@imperial.edu CRN # 10154 MW Class Webpage (optional) 10155 TR Class Room 804 Office 812 Class

More information

Instructors: Mushfiq Swaleheen,Ph.D., Associate Professor. Office: Lutgert Hall 3306 Bill Browning

Instructors: Mushfiq Swaleheen,Ph.D., Associate Professor. Office: Lutgert Hall 3306 Bill Browning 1 Department of Economics and Finance Lutgert College of Business ECO 2023 -Principles of Microeconomics, CRN 50110 Summer A, 2014 Tuesday & Thursday 3.00 6.25 PM Lutgert Hall, 1201 Instructors: Mushfiq

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

ACCOUNTING 205 INTRODUCTION TO FINANCIAL ACCOUNTING 8-Week Online Course Spring 2015

ACCOUNTING 205 INTRODUCTION TO FINANCIAL ACCOUNTING 8-Week Online Course Spring 2015 ACCOUNTING 205 INTRODUCTION TO FINANCIAL ACCOUNTING 8-Week Online Course Spring 2015 Instructor name: Dr. Michael Chiasson Office location: 133 Powell Phone number: 985-448-4176 Email: Michael.Chiasson@Nicholls.edu

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

SOUTHERN MAINE COMMUNITY COLLEGE South Portland, Maine 04106 Course Syllabus Spring 2015

SOUTHERN MAINE COMMUNITY COLLEGE South Portland, Maine 04106 Course Syllabus Spring 2015 SOUTHERN MAINE COMMUNITY COLLEGE South Portland, Maine 04106 Course Syllabus Spring 2015 Course Title: Mobile Application Development Catalog Number: CSCI 230 Credit Hours: 3 Total Contact Hours: 45 Instructor:

More information

SYLLABUS. NOTE: A three ring binder is required to keep notes and hand-outs neatly organized.

SYLLABUS. NOTE: A three ring binder is required to keep notes and hand-outs neatly organized. GERMAN 1 LONG BEACH CITY COLLEGE PROF. I. WOLLANK Frühjahr 2015 e-mail: iwollank@lbcc.edu Office: M 202 Phone: (562) 938-4690 Office Hrs.: MW 6-8AM T 7-8 or by appt. SYLLABUS TEXT: KONTAKTE, by T. Terrel,

More information

ENTC 219 Digital Electronics Fall 2015 TR 11:10 12:25 Thompson 121

ENTC 219 Digital Electronics Fall 2015 TR 11:10 12:25 Thompson 121 Course Description: ENTC 219 Digital Electronics Fall 2015 TR 11:10 12:25 Thompson 121 Survey of digital applications, number systems, digital logic devices and circuits, sequential logic. Prerequisite:

More information

EDU 230 Schools in Communities Social & Behavioral Sciences Department

EDU 230 Schools in Communities Social & Behavioral Sciences Department EDU 230 Schools in Communities Social & Behavioral Sciences Department Catalog Course Description: This course provides students with a basic understanding of the social, political, and historical aspects

More information

SAMPLE ONLY. COMM 304 Interpersonal Communication Spring 2015 Tu/Th 11:00 12:20 ANN L101

SAMPLE ONLY. COMM 304 Interpersonal Communication Spring 2015 Tu/Th 11:00 12:20 ANN L101 COMM 304 Interpersonal Communication Spring 2015 Tu/Th 11:00 12:20 ANN L101 Instructor: Jillian Pierson, Ph.D. jilliank@usc.edu Office: Office Hours: ASC 333 & ANN 306 M/W 9:15-9:45 am T/Th 12:30 to 1

More information

Digital Design Graphics Technology DDGT 110 Drafting Fundamentals ENGI 122 Intro to Engineering Fall 2015 Course Syllabus

Digital Design Graphics Technology DDGT 110 Drafting Fundamentals ENGI 122 Intro to Engineering Fall 2015 Course Syllabus Digital Design Graphics Technology DDGT 110 Drafting Fundamentals ENGI 122 Intro to Engineering Fall 2015 Course Syllabus Instructor: Department Website: Gary Strommen www.ddgt.net atc.ddgt.net Location:

More information

COURSE GOALS AND OBJECTIVES

COURSE GOALS AND OBJECTIVES Email: khansen@vansd.org SHS web page: http://skyview.vansd.org School phone: 360-313-4200 Follow me on Twitter: @MrsHansenSOLV4X Room: 611 COURSE DESCRIPTION In the Video Game Programming course students

More information

MKTG 2150 GLOBAL MARKETING WINTER 2015 (Tuesday/Thursday course) - - -F I R S T D A Y H A N D O U T- - -

MKTG 2150 GLOBAL MARKETING WINTER 2015 (Tuesday/Thursday course) - - -F I R S T D A Y H A N D O U T- - - MKTG 2150 GLOBAL MARKETING WINTER 2015 (Tuesday/Thursday course) - - -F I R S T D A Y H A N D O U T- - - Instructor: Joe Rice Office: A-212 Fax: 586-286-2038 Voice Mail: 586-286-2040 (please leave a complete

More information

PHIL 2244: Engineering Ethics (3 credits)

PHIL 2244: Engineering Ethics (3 credits) Syllabus University of New Orleans Department of Philosophy PHIL 2244: Engineering Ethics (3 credits) SECTION 001: LA 372, F, 1:00 1:50 p.m. Contact Information Instructor: Dr. Edward Johnson Office: Liberal

More information

COURSE AND GRADING POLICY

COURSE AND GRADING POLICY MONTGOMERY COLLEGE Chemistry Department Rockville Campus Summer II 2015 CHEM131-: General Chemistry I Lecture Section (10462 CH131) MTWR 9:00-10:35 am, Room SC-462 (Science Center). Discussion Sections

More information

Midlands Technical College MED 124- Medical Computer Practicum- Hybrid Health Sciences Medical Assisting Spring

Midlands Technical College MED 124- Medical Computer Practicum- Hybrid Health Sciences Medical Assisting Spring Midlands Technical College MED 124- Medical Computer Practicum- Hybrid Health Sciences Medical Assisting Spring Catalog Course Description: This course covers the use of medical software for accounting,

More information

COURSE WEBSITE: http://leonardo.sfasu.edu/jjohnston *This is essential for success in this class.

COURSE WEBSITE: http://leonardo.sfasu.edu/jjohnston *This is essential for success in this class. French 132 Beginning French II FRE 132.001 Dr. Joyce Johnston Email: jjohnston@sfasu.edu Phone: X2279 Office: LAN 252 Office Hours: MW 8-9am,12-1pm and 2:15-2:45pm Th 1-3:30 F 8-9am and 1-2:45pm *or by

More information

AEC 3073 INTERCULTURAL COMMUNICATION Ms. Mary Rodriguez

AEC 3073 INTERCULTURAL COMMUNICATION Ms. Mary Rodriguez Spring 2015 AEC 3073 - Section 2D38 General Education Categories: Social & Behavioral Sciences (S) and International (N) or S and Diversity (D) Three (3) Credit Hours Tuesday (5 th and 6 th period) 11:45-1:40pm

More information

Survey Research Methods

Survey Research Methods Survey Research Methods MMC6936 Section 1197 Spring 2015 Instructor: Hyojin Kim, Ph.D. hkim@ufl.edu Office Hours via Skype: Thu 1:30PM 3:30PM or by appointment [Skype ID: hkimuf] Course Description This

More information

PSYC 2301 General Psychology Course Syllabus

PSYC 2301 General Psychology Course Syllabus PSYC 2301 General Psychology Course Syllabus PSYC 2301 General Psychology Psychology Behavioral Sciences Department Division of Arts and Sciences Instructor: Chris Straface, M.A., LBSW, LPC-Intern South

More information

Management 352: Human Resource Management Spring 2015 Syllabus

Management 352: Human Resource Management Spring 2015 Syllabus Management 352: Human Resource Management Spring 2015 Syllabus Instructor: Professor Tanya Hertz, Department of Management E-mail: THertz@mail.sdsu.edu (Subject line should read MGT 352-A1) Office Phone

More information

Johnson State College External Degree Program. PSY-2040-JY01 Social Psychology Syllabus Spring 2016

Johnson State College External Degree Program. PSY-2040-JY01 Social Psychology Syllabus Spring 2016 Instructor: Dr. Leslie Johnson, Ph.D. Leslie.Johnson@jsc.edu Dates: Jan 18 to May 8 (no class Apr 4 to 8) Johnson State College External Degree Program PSY-2040-JY01 Social Psychology Syllabus Spring 2016

More information

Nashville State Community College Business & Applied Arts Division Business Program. Master Course Syllabus

Nashville State Community College Business & Applied Arts Division Business Program. Master Course Syllabus Revised: 04.27.2015 Nashville State Community College Business & Applied Arts Division Business Program Master Course Syllabus This master course syllabus is meant simply as a guide and overview of the

More information

EMPORIA STATE UNIVERSITY THE TEACHERS COLLEGE. CLASSROOM MANAGEMENT: ED334 Spring, 2011 Three Hours

EMPORIA STATE UNIVERSITY THE TEACHERS COLLEGE. CLASSROOM MANAGEMENT: ED334 Spring, 2011 Three Hours EMPORIA STATE UNIVERSITY THE TEACHERS COLLEGE CLASSROOM MANAGEMENT: ED334 Spring, 2011 Three Hours Instructor: Steve Neill, Associate Professor Office: Visser Hall 203B Address: Box 4037 Emporia, Kansas

More information

SYLLABUS CNBT 2335 COMPUTER-AIDED CONSTRUCTION SCHEDULING

SYLLABUS CNBT 2335 COMPUTER-AIDED CONSTRUCTION SCHEDULING SYLLABUS CNBT 2335 COMPUTER-AIDED CONSTRUCTION SCHEDULING COURSE DESCRIPTION Construction scheduling utilizing computer scheduling software to perform various scheduling procedures. Credit Hours: 3 (2

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

PELLISSIPPI STATE TECHNICAL COMMUNITY COLLEGE MASTER SYLLABUS MANAGEMENT INFORMATION SYSTEMS CST 2030

PELLISSIPPI STATE TECHNICAL COMMUNITY COLLEGE MASTER SYLLABUS MANAGEMENT INFORMATION SYSTEMS CST 2030 PELLISSIPPI STATE TECHNICAL COMMUNITY COLLEGE MASTER SYLLABUS MANAGEMENT INFORMATION SYSTEMS CST 2030 Class Hours: 3.0 Credit Hours: 4.0 Laboratory Hours: 4.0 Date Revised: Spring 01 Catalog Course Description:

More information

Governors State University College of Business and Public Administration. Course: STAT 361-03 Statistics for Management I (Online Course)

Governors State University College of Business and Public Administration. Course: STAT 361-03 Statistics for Management I (Online Course) Governors State University College of Business and Public Administration Course: STAT 361-03 Statistics for Management I (Online Course) Instructor: Kevin M. Riordan, M.A. Session: Fall Semester 2011 Prerequisite:

More information

INFO 2130 Introduction to Business Computing Spring 2013 Self-Paced Section 006

INFO 2130 Introduction to Business Computing Spring 2013 Self-Paced Section 006 INFO 2130 Introduction to Business Computing Spring 2013 Self-Paced Section 006 Course Coordinator & Master Instructor: Prof. Ming-Chang Huang Office: 306A, Friday Phone: 704-687-7452 Email: mhuang5@uncc.edu

More information

Social Gerontology SOC 210 Fall 2015. Professor: Jamie Chapman, PhD Candidate Class Location: Patterson Hall 205

Social Gerontology SOC 210 Fall 2015. Professor: Jamie Chapman, PhD Candidate Class Location: Patterson Hall 205 Social Gerontology SOC 210 Fall 2015 Professor: Jamie Chapman, PhD Candidate Class Location: Patterson Hall 205 Office: Patterson Hall 307 Meeting times: MWF 12:50p-1:50 Office hours: MW 9:30a-10:30a,

More information

Nashville State Community College Business & Applied Arts Division Office Administration. Master Course Syllabus

Nashville State Community College Business & Applied Arts Division Office Administration. Master Course Syllabus Revised: 04-2015 Nashville State Community College Business & Applied Arts Division Office Administration Master Course Syllabus This master course syllabus is meant simply as a guide and overview of the

More information