El Paso Community College Syllabus for COSC2336 Programming Fundamendals III Fall 2015

Size: px
Start display at page:

Download "El Paso Community College Syllabus for COSC2336 Programming Fundamendals III Fall 2015"

Transcription

1 El Paso Community College Syllabus for COSC2336 Programming Fundamendals III Fall 2015 Instructor s name: Rafael Escalante Ruiz Office: A1312 in Valle Verde Cell phone (call or text): (915) Office phone (office hours only): (915) rescal10@live.epcc.edu Class meeting times: Mon and Wed from 1pm to 2:20pm, on room A1723 Office hours: MW 2:30-4pm; TR 12-1pm and by appointment Class website: I Required Materials I.I Textbook Algorithms, by Robert Sedgewick and Kevin Wayne. Addison-Wesley Professional, 4th Edition, March 19, ISBN: Note Reading and programming assignments will be drawn from the book. You are required to obtain this book for use in this course. Note that photocopied textbooks are a violation of copyright law; any student caught with a photocopied book will be referred to the Dean of Students for discipline. I.II USB Drive This class will use a Linux Virtual Machine extensively. We will use a USB drive to transport the virtual machine. The USB drive must have a capacity of 16GB or greater; a thumb drive is OK (you can find these at around $10 at the bookstore I recommend a drive with fast transfer speeds such as the SanDisk Ultra or SanDisk Extreme), and if you have a portable hard disk lying around that s even better (but don t purchase one just for this class). 1

2 II Prerequisites and Course Objectives Course objectives: This is the third and final course in the fundamental computer science sequence. Students will learn about fundamental data structures and analysis and design of algorithms. Prerequisites: A minimum grade of C in COSC1437. III Course Requirements A letter grade is assigned to each student at the end of the course based on the numerical scores of these activities: Programming assignments 25% Homework and quizzes 15% Partial exams (3 exams, 13% each) Final comprehensive exam 21% Letter grades are assigned according to the following criteria: 90% or higher is an A 80-89% is a B 70-79% is a C 60-69% is a D below 60% is an F I reserve the right to adjust these criteria downward, e.g., so that 88% or higher results in an A, based on overall class performance. The criteria will not be adjusted upward, however. You must earn a C or better to be able to transfer this class. Additionally, any one of the following will result on a final grade of F, even if the overall average is greater than 60%: Obtaining an average of less than 60% on the programming assignments Obtaining a grade of less than 50% on the final exam Obtaining an average of less than 50% on the partial exams Not submitting ALL programming assignments by the end of the semester, even if they are too late to receive credit IV Instructor s Policies Late Work Homework up to a class day late will receive up to 80% of full credit, and it will not be accepted after that. Homework that is turned in late will not be graded immediately. Honors Program I participate in the Honors and Enhanced Honors program. Please contact me if you would like to participate. 2

3 Collaboration Collaboration among students is strongly encouraged. It is OK to: Talk with other students about approaches and ideas. Get ideas and extra information from the internet, books, etc. However, it is NOT OK to: Share code with another student (if a piece of code is submitted by two or more students, both students are guilty of cheating, regardless of who wrote the original code). Use code acquired from an outside source (the internet, a friend, etc.) Look at another student s code Debug another student s code I will use software to detect plagiarized programs and take appropriate disciplinary actions if necessary. Absences It is the students responsibility to make prior arrangements with the instructor if the student is unable to attend class the day of any exam. Exams will be administered at the assigned time and a student will be considered absent if not present at the assigned time. A grade of zero will be given if an exam is not taken and no prior arrangements to take the exam have been made. If prior arrangements have been made, the make-up test will be administered at the instructor s convenience. Past experience by students taking this course has shown that attendance at each class session is essential to stay up with the teaching. It will be the responsibility of the student to obtain lecture notes and assignments for classes that are missed prior to the next class period. Class Drops I will not drop students with failing grades; students should drop themselves from the class if so they desire. I am not able to provide a W grade for students that fail to drop themselves before the deadline. Academic Dishonesty Academic dishonesty shall constitute a violation of rules and regulations and is punishable as prescribed by College Board policies. Academic dishonesty shall include, but not be limited to, cheating on a test, plagiarism, and collusion. I take academic dishonesty extremely seriously. Cheating on an assignment or a test means automatically failing the assignment, test, or group of assignments with an F. Cell Phones Cell phones are prohibited in class. Personal Computing All non-programming or non-note-taking related activities on computing devices (either the schools or your own) are prohibited in the class, including but not limited to , Facebook, Twitter, forum boards, and gaming of any kind. Disabilities EPCC offers services to persons with disabilities to promote success in classes. If you have a disability that may impact your course work, please go to the Center for Students with Disabilities (CSD) to request accommodations. Your needs will be discussed privately with the CSD counselor and then privately with me, your instructor. Disabilities 3

4 covered include but are not limited to learning disabilities, hearing impairment, visual impairment, physical impairment, mental health, or a temporary impairment. The CSD office for Valle Verde is in room C112, with phone number V Goals for the Course Successful students will be expected to: Be able to apply basic software engineering principles: Use version control, construct and run unit tests, and be familiar with the UNIX command line. Apply mathematical skills to evaluate running time of algorithms Choose appropriate data structures to implement algorithms Use efficient algorithms to solve problems such as searching, sorting, and scheduling Solve optimization problems using either dynamic programming or greedy algorithms Apply fundamental graph algorithms such as depth-first search, breadth-first search to applications such as minimum spanning trees, and shortest paths VI Topics Covered 1. Software engineering principles: version control, unit testing, completing basic tasks with the UNIX command line. 2. Introduction to Design and Analysis of Algorithms 3. Growth of Functions 4. Divide and Conquer 5. Sorting Algorithms and their Applications 6. Hash Tables 7. Binary Search Trees 8. Balanced Search Trees: AVL and B Trees 9. Optimization Problems: Dynamic Programming 10. Optimization Problems: Greedy Algorithms 11. Graph Algorithms 12. NP-Completeness VII Student Learning Outcomes Upon successful completion of this course, students will be able to: 1. Describe, implement, and use the following data structures: (a) Heaps (b) Hash tables (c) Balanced trees (d) Graphs (e) Disjoint set forests 2. Describe, implement, and apply the following graph algorithms: (a) Connected components 4

5 (b) Breadth-first search (c) Depth-first search (d) Topological sorting (e) Minimum spanning trees (Kruskal and Primm s algorithms) (f) Single-source shortest paths 3. Trace the behavior of recursive programs using activation records. VIII Calendar Note: This is a tentative calendar. An updated calendar will be available at the class website ( Monday Aug 24th 1 Syllabus & class introduction. VM setup, UNIX command line, IntelliJ. 31st 3 Quiz 1. Homework 1 due. Read: 6. compareto. 7th No Class Institutional Holiday 14th 6 Quiz 3. Stacks and Queues in Practice. 21st 8 Test 1 Review 28th 10 Quiz and 19. Binary Trees, BSTs. Oct 5th 12 Quiz AVLs (handout, applet) and B-trees. Homework 4. 12th Hash Tables. Homework 5. 19th 16 Test 2 26th 18 Graphs and paths. Types, representation and algorithms. Homework 6. Wednesday 26th 2 Math background. Big-O notation and Complexity. Homework 1. Read: 5 Sep 2nd 4 Quiz 2. Sorting Algorithms ( 6). 9th 5 Complexity of operations and Big-O. 16th Implementation, Operations, Complexity and Big-O. 23rd 9 Test 1 30th 11 AVLs. Homework 3. Review 18 and 19 for quiz. Extra credit assignment. 7th 13 Quiz Priority Queues. Heap Sort. 14th 15 Quiz 7. Review for Test 2. 21st 17 Introduction to graphs. 28th 19 Quiz 8. BFS; DFS; Dijkstra s algorithm. 5

6 Monday Nov 2nd 20 Dijkstra s algorithm as a Greedy approach. 9th 22 Disjoint-set data structure (Union & Find) 16th 24 Test 3. 23rd 26 Algorithm design techniques: divide-and-conquer, dynamic programming. 30th 28 TBD Wednesday 4th 21 Quiz 9. MST, Primm s, Kruskal s, connected and strongly connected components 11th 23 Quiz 10. Homework 8. Review for Test 3. 18th 25 Algorithm design techniques: Random algorithms and backtracking 25th 27 Quiz 11. Discussion about the four techniques Dec 2nd 29 Review for final. 6

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

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

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

ACCT 5610/5613/6610/6616 Governmental and Not-For-Profit Accounting Fall 2014

ACCT 5610/5613/6610/6616 Governmental and Not-For-Profit Accounting Fall 2014 ACCT 5610/5613/6610/6616 Governmental and Not-For-Profit Accounting Fall 2014 Instructor: Dr. Andrew J. McLelland, CPA, CMA Office Location: 340 Lowder Hall Phone: (334) 844 6217 Help Times: TR, 2:00 to

More information

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

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

More information

MAT 117: College Algebra Fall 2013 Course Syllabus

MAT 117: College Algebra Fall 2013 Course Syllabus MAT 117: College Algebra Fall 2013 Course Syllabus Instructor: Douglas Williams E-mail - Phone: douglas.a.williams@asu.edu - 480-965-7561 Office: ECA 206 Office Hours: MWF 11:00-11:50, TTh 12:00-12:50,

More information

Part A of the Syllabus

Part A of the Syllabus Part A of the Syllabus Semester: Fall 2014 Instructor: Bruce Ford Class Info: ITE 115 L01 Phone: 540-423-9843 Location/Room: LGC 210 Office Location: 303J LGC Class Name: Introduction to Computer Days

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

INFO 3130 Management Information Systems Spring 2016

INFO 3130 Management Information Systems Spring 2016 Instructor: Office: Dr. Reginald Silver 304A Friday Building Phone: 704-687-6181 Email: rsilver5@uncc.edu Course Website: Moodle 2 Section Information: Section Day(s) Location Time Section 004 MW 3222

More information

Brazosport College Syllabus for PSYC 2301 General Psychology

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

More information

MATH 1310, SECTION 17086

MATH 1310, SECTION 17086 MATH 1310, SECTION 17086 College Algebra, Summer 2011 COURSE SYLLABUS Instructor: Shahinda Hafeez Email: shafeez@math.uh.edu Course Homepage: online.math.uh.edu/courses CourseWare: www.casa.uh.edu Overview

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

El Paso Community College History 1301 13996

El Paso Community College History 1301 13996 El Paso Community College History 1301 13996 Fall 2011 Part I Instructor s Course Requirements 1. Course Number and Instructor s Information: History 1302 13996: History of The United States to 1865 Instructor

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

Best way to contact me: email listed above or stop by my office; I don t read WebCT email

Best way to contact me: email listed above or stop by my office; I don t read WebCT email Course CHEM 1311, section 003: General Chemistry I Professor Dr. Steven O. Nielsen Term Fall 2006 Meetings MWF 2:00 2:50 pm, FN 2.102 (Kusch Auditorium) Professor s Contact Information Office Phone 972-883-5323

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

ACCY 2001 Intro Financial Accounting Fall 2014

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

More information

FUNDAMENTALS OF NEGOTIATIONS Purdue University Fall 2014 CSR 34400-001 CRN 51571 Tuesday and Thursday 7:30 AM - 8:45 AM Krannert Building G016

FUNDAMENTALS OF NEGOTIATIONS Purdue University Fall 2014 CSR 34400-001 CRN 51571 Tuesday and Thursday 7:30 AM - 8:45 AM Krannert Building G016 FUNDAMENTALS OF NEGOTIATIONS Purdue University Fall 2014 CSR 34400-001 CRN 51571 Tuesday and Thursday 7:30 AM - 8:45 AM Krannert Building G016 Professor: Andres Vargas, PhD Office: Matthews Hall Room 216

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

MUSB 1305- SURVEY OF THE MUSIC BUSINESS. CRN 28674 - Spring 2015. Spring Branch Campus - Room 405 6:00 p.m. - 10:00 p.m. Wed

MUSB 1305- SURVEY OF THE MUSIC BUSINESS. CRN 28674 - Spring 2015. Spring Branch Campus - Room 405 6:00 p.m. - 10:00 p.m. Wed MUSIC BUSINESS Northwest College MUSB 1305- SURVEY OF THE MUSIC BUSINESS CRN 28674 - Spring 2015 Spring Branch Campus - Room 405 6:00 p.m. - 10:00 p.m. Wed 4 hour lecture course / 48 hours per semester/

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

DIVISION OF INFORMATION TECHNOLOGY PROGRAMS AND SYSTEMS SUPPORT FALL 2015 / Spring 2016

DIVISION OF INFORMATION TECHNOLOGY PROGRAMS AND SYSTEMS SUPPORT FALL 2015 / Spring 2016 DIVISION OF INFORMATION TECHNOLOGY PROGRAMS AND SYSTEMS SUPPORT FALL 2015 / Spring 2016 CLASS NUMBER/NAME: COSC 2436 PROGRAMMING FUNDAMENTALS III SECTION NUMBER: 5280 CLASS DAYS/HOURS: Period 5-9:15 10:50

More information

ANTH 2302-0046 Introduction to Archaeology FALL 2015 (77579) Tu/Th 12:30PM - 2:00PM Katy Campus Room 348

ANTH 2302-0046 Introduction to Archaeology FALL 2015 (77579) Tu/Th 12:30PM - 2:00PM Katy Campus Room 348 Instructor: Email: Office Phone: Office Hours: Robert Marcom robert.marcom@hccs.edu 713-718-6063 (Dept. Office) By appointment ANTH 2302-0046 Introduction to Archaeology FALL 2015 (77579) Tu/Th 12:30PM

More information

STAT 1403 College Algebra Dr. Myron Rigsby Fall 2013 Section 0V2 crn 457 MWF 9:00 am

STAT 1403 College Algebra Dr. Myron Rigsby Fall 2013 Section 0V2 crn 457 MWF 9:00 am MATH 1403 College Algebra/ Rigsby/ Fall 2013 Page 1 Credit Hours: 3 Lecture Hours: 3 University of Arkansas Fort Smith 5210 GRAND AVENUE P.O. BOX 3649 FORT SMITH, AR 72913-3649 479-788-7000 Syllabus and

More information

BCE 101 SAMPLE COURSE SYLLABUS

BCE 101 SAMPLE COURSE SYLLABUS BCE 101 SAMPLE COURSE SYLLABUS Instructor: Office/Office Hours: /By appointment Telephone/E-mail: Class Time: Class Location: Credit: 2 credit hours, Pass/Fail Also required: Text: UA Fundamentals: Adjusting

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

College Algebra Online Course Syllabus

College Algebra Online Course Syllabus VALENCIA COMMUNITY COLLEGE EAST CAMPUS MAC 1114 COLLEGE TRIGONOMETRY (ONLINE COURSE) SYLLABUS Term/Year: Spring 2009 CRN: 22607 Professor: Dr. Agatha Shaw Phone: (407) 582 2117 Office: 8-249 Student Engagement

More information

Math 176-1001- 83926: Applied Business Calculus

Math 176-1001- 83926: Applied Business Calculus Math 176-1001- 83926: Applied Business Calculus MW 2:30-3:45 P.M. (WRB #2030) Prof: Charlie Nazemian Office : DMS #232 E Mail: charlien@unr.edu Office Phone: 682-6176 Office Hours: M- W 10-11:30 and Tuesday

More information

SPAN 1300-5135 Conversational Spanish I Course Syllabus SPRING 2001

SPAN 1300-5135 Conversational Spanish I Course Syllabus SPRING 2001 Page 1 SPAN 1300-5135 Conversational Spanish I Course Syllabus SPRING 2001 Instructor Information Name: Juan Soto E-Mail: jsoto@odessa.edu Office Location: WH 202 Odessa College 201 W. University Odessa,

More information

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

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

More information

MATH 0312-61378: Intermediate Algebra

MATH 0312-61378: Intermediate Algebra Topics include quadratics, polynomial, rational, logarithmic, and exponential functions; systems of equations; matrices; and determinants. A departmental final examination will be given in this COURSE

More information

Syllabus Outline. Syllabus COSC1336 Programming Fundamentals I Page 1 of 6

Syllabus Outline. Syllabus COSC1336 Programming Fundamentals I Page 1 of 6 Syllabus COSC1336 Programming Fundamentals I Page 1 of 6 Syllabus Outline Austin Community College Department of Computer Studies and Advanced Technology Programming Fundamentals I ALL sections Spring

More information

STA 4442 INTRODUCTION TO PROBABILITY FALL 2012

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

More information

General Psychology. Course Syllabus

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

More information

Learning Web Page: http://learning.hccs.edu/faculty/melvin.mays. Office Hours: I can be contacted @ melvin.mays@hccs.edu or 713-718- 5441

Learning Web Page: http://learning.hccs.edu/faculty/melvin.mays. Office Hours: I can be contacted @ melvin.mays@hccs.edu or 713-718- 5441 MUSC 1335 Commercial Music Software Audio Recording Program / Northwest College CRN 50237 Spring 2015 Spring Branch Campus PSPBR Rm#704 Mon Wed 5:30 PM- 8:30 PM 2 Hour Lecture, 4 Hour Lab course/ 112 Contact

More information

El Paso Community College Syllabus Instructor s Course Requirements Summer 2015

El Paso Community College Syllabus Instructor s Course Requirements Summer 2015 Syllabus, Part I Math 1324, Revised Summer 2015 El Paso Community College Syllabus Instructor s Course Requirements Summer 2015 I. Course Number and Instructor Information Mathematics 1324-31403, From

More information

Mathematics Spring Branch Campus

Mathematics Spring Branch Campus Communication Instructor: Bon Crowder Email: bon@mathfour.com Twitter: @mathfour (http://twitter.com/mathfour) Text or voice: 713-557-8048 Backchannel and outside of class discussions will be via Tweetchat

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

Math 161A-01: College Algebra and Trigonometry I Meeting Days: MW 9:31am 11:30am Room : D9

Math 161A-01: College Algebra and Trigonometry I Meeting Days: MW 9:31am 11:30am Room : D9 Math 161A-01: College Algebra and Trigonometry I Meeting Days: MW 9:31am 11:30am Room : D9 INSTRUCTOR INFORMATION: Name: Steve S. Lam, Associate Professor Contact No: 735-5600 Office Hrs.: MW 8:30am 9:30am

More information

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

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

More information

Anglo americká vysoká škola, o.p.s.

Anglo americká vysoká škola, o.p.s. THE COURSE OUTLINE (SYLLABUS) COURSE NAME: Quantitative Research Methods COURSE CODE: MTH 315 INSTRUCTOR: RNDr. Václav Novák 1. Course Name and Code: MTH 315, Quantitative Research Methods 2. Day, Time,

More information

Canvas: All tests and assignments will be submitted through use of Canvas, which can be found using the following link: learn-wsu.uen.

Canvas: All tests and assignments will be submitted through use of Canvas, which can be found using the following link: learn-wsu.uen. Research Methods in Psychology Psy 3610, Fall 2011 MWF 7:10a-8:20a, Social and Behavioral Science 317 Heather Chapman, heatherchapman@weber.edu Office Hours: By Appointment Required Texts: 1. Research

More information

POSC 110: Introduction to Politics Course Syllabus. Instructor: Edwin Kent Morris. Department of Political Science Radford University.

POSC 110: Introduction to Politics Course Syllabus. Instructor: Edwin Kent Morris. Department of Political Science Radford University. POSC 110: Introduction to Politics Course Syllabus Instructor: Edwin Kent Morris Department of Political Science Radford University Fall 2012 Time: MWF 8:00AM 8:50AM Location: 302 Young Hall Final Exam:

More information

MIS 6204 Information Technology and MIS Fundamentals

MIS 6204 Information Technology and MIS Fundamentals MIS 6204 Information Technology and MIS Fundamentals Course Information Course Number/Section MIS 6204 Section 596 Course Title Information Technology and MIS Fundamentals Term Spring 2010 Second 8 Weeks

More information

Math 830- Elementary Algebra

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

More information

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

Alabama Department of Postsecondary Education. Representing The Alabama Community College System

Alabama Department of Postsecondary Education. Representing The Alabama Community College System Alabama Department of Postsecondary Education Representing The Alabama Community College System Central Alabama Community College MTH 100 Intermediate Algebra Prerequisite: MTH 092 or MTH 098 or appropriate

More information

January 10, 2011. Course MIS6319-001 Enterprise Resource Planning Professor Dr. Lou Thompson Term Spring 2011 Meetings Thursday, 4-6:45 PM, SOM 1.

January 10, 2011. Course MIS6319-001 Enterprise Resource Planning Professor Dr. Lou Thompson Term Spring 2011 Meetings Thursday, 4-6:45 PM, SOM 1. Course MIS6319-001 Enterprise Resource Planning Professor Dr. Lou Thompson Term Spring 2011 Meetings Thursday, 4-6:45 PM, SOM 1.110 January 10, 2011 Professor s Contact Information Office Phone 972-883-2558

More information

Chemistry 3325 Organic Chemistry II Fall 2007

Chemistry 3325 Organic Chemistry II Fall 2007 Course Website: http://webct.utep.edu/ Instructor: Luis Martínez, Ph.D. Phone: 747-5944 Office: Physical Sciences 411D Email: luisem@utep.edu Office Hours: By appointment Teaching Assistants: Ms. Nancy

More information

PELLISSIPPI STATE COMMUNITY COLLEGE MASTER SYLLABUS PROJECT SCHEDULING W/LAB ENGT 2021

PELLISSIPPI STATE COMMUNITY COLLEGE MASTER SYLLABUS PROJECT SCHEDULING W/LAB ENGT 2021 PELLISSIPPI STATE COMMUNITY COLLEGE MASTER SYLLABUS PROJECT SCHEDULING W/LAB ENGT 2021 Class Hours: 3:0 Credit Hours: 3:0 Laboratory Hours:2:0 Date Revised: Fall 2012 Catalog Course Description: This course

More information

Forensic Biology 3318 Syllabus

Forensic Biology 3318 Syllabus #syl-biol3318.501.11s-@anwu-üu7606uj_page 1 of 5 Course Information BIOL 3318-501, Forensic Biology, Spring 2011 Mondays 7:00-9:45 PM, CN1.120 Forensic Biology 3318 Syllabus Instructor Contact Information

More information

Florida State College at Jacksonville MAC 1105: College Algebra Summer Term 2011 Reference: 346846 MW 12:00 PM 1:45 PM, South Campus Rm: G-314

Florida State College at Jacksonville MAC 1105: College Algebra Summer Term 2011 Reference: 346846 MW 12:00 PM 1:45 PM, South Campus Rm: G-314 Florida State College at Jacksonville MAC 1105: College Algebra Summer Term 2011 Reference: 346846 MW 12:00 PM 1:45 PM, South Campus Rm: G-314 General Information: Instructor: Ronald H. Moore Office Hours:

More information

COURSE OUTLINE. SOC SCI 2UA3E (Winter 2013) Principles of Applied Behaviour Analysis 1

COURSE OUTLINE. SOC SCI 2UA3E (Winter 2013) Principles of Applied Behaviour Analysis 1 COURSE OUTLINE SOC SCI 2UA3E (Winter 2013) Principles of Applied Behaviour Analysis 1 Day of the Week: Tuesdays (C01) 7:00-10:00 PM Wednesdays (C02) 7:00-10:00 PM Location: Michael DeGroote Centre for

More information

College of Charleston EDEE 363 002 Introduction to Early Childhood Education 3 Credit Hours Spring 2010

College of Charleston EDEE 363 002 Introduction to Early Childhood Education 3 Credit Hours Spring 2010 College of Charleston EDEE 363 002 Introduction to Early Childhood Education 3 Credit Hours Spring 2010 Meeting Time and Place: Thursdays, 8:00-10:45 Education Center, Room #215 Professor: Dr. Virginia

More information

Southwestern Michigan College School of Business Dowagiac, Michigan. Course Syllabus FALL SEMESTER 2012

Southwestern Michigan College School of Business Dowagiac, Michigan. Course Syllabus FALL SEMESTER 2012 Southwestern Michigan College School of Business Dowagiac, Michigan Course Syllabus FALL SEMESTER 2012 COURSE TITLE: Windows Networking I COURSE NO ISYS 281 SECTION NO.: 2091 CREDITS/CONTACTS: Credit Hours:

More information

Lake-Sumter Community College Course Syllabus. STA 2023 Course Title: Elementary Statistics I. Contact Information: Office Hours:

Lake-Sumter Community College Course Syllabus. STA 2023 Course Title: Elementary Statistics I. Contact Information: Office Hours: Lake-Sumter Community College Course Syllabus Course / Prefix Number: STA 2023 Course Title: Elementary Statistics I CRN: 10105 (T TH) 10106 (M W) Credit: 3 Term: Fall 2011 Course Catalog Description:

More information

Instructor Contact Information: bon@mathfour.com, 713-557-8048, @mathfour, http://facebook.com/boncrowder

Instructor Contact Information: bon@mathfour.com, 713-557-8048, @mathfour, http://facebook.com/boncrowder Instructor: Bon Crowder Mathematics Spring Branch Math 1324: Finite Mathematics with Applications CRN 77778 Spring 2014 Room 311 11am - 12:30 TTh 3 hour lecture course / 48 hours per semester/ 15 weeks

More information

MAT 1500: College Algebra for the Social and Management Sciences General Syllabus

MAT 1500: College Algebra for the Social and Management Sciences General Syllabus MAT 1500: College Algebra for the Social and Management Sciences General Syllabus (See your section syllabus for specific instructor information, deadlines and points.) Course Description: This is a college

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

CTPSY-2301 General Psychology. TSTC Online COURSE SYLLABUS

CTPSY-2301 General Psychology. TSTC Online COURSE SYLLABUS CTPSY-2301 General Psychology TSTC Online COURSE SYLLABUS Success never rests. On your worst days, be good. On your best days, be great. And on every other day, get better. ~Carmen Mariano Prepared by:

More information

II. LEARNING OUTCOMES A. Upon successful completion of this course, Introduction to Early Childhood Education, the student will be able to:

II. LEARNING OUTCOMES A. Upon successful completion of this course, Introduction to Early Childhood Education, the student will be able to: I. INTRODUCTION A. An introduction to the profession of early childhood education, focusing on developmentally appropriate practices, types of programs, historical perspectives, ethics, and current issues.

More information

Math 121- Online College Algebra Syllabus Spring 2015

Math 121- Online College Algebra Syllabus Spring 2015 Math 121- Online College Algebra Syllabus Spring 2015 Instructor: Michael Azlin Office: Hume 218 Office Hours: M/W: 10:00 11:30am, T/Th: 9:00 10:30am, or by appt (Note: No W/Th hours during test weeks)

More information

Math 1280/1300, Pre-Calculus

Math 1280/1300, Pre-Calculus Math 1280/1300, Pre-Calculus Instructor: Office: Office Hours: Phone: E-mail: MyMathLab Course Code: Text and Materials: ISBN: 1269594060 Author: Blitzer Title: Precalculus, Books a la Carte Edition Package

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

Student Guide and Syllabus for MAT100 Introductory Algebra

Student Guide and Syllabus for MAT100 Introductory Algebra Course Information: MAT100 Introductory Algebra Section: 05C Section: 06C Section: 07C* Classroom: 341 Main Building Classroom: 341 Main Building Classroom: 341 Main Building Meeting Dates: Monday Thursday

More information

INFO 2130 Introduction to Business Computing Fall 2014

INFO 2130 Introduction to Business Computing Fall 2014 INFO 2130 Introduction to Business Computing Fall 2014 Instructor: Office: Reginald Silver 304A, Friday Building Phone: 704-687-6181 Email: rsilver5@uncc.edu Course Website: Moodle 2 Section: INFO 2130

More information

ITS1100: Train the Trainer

ITS1100: Train the Trainer Course Syllabus ITS1100: Train the Trainer Course Information Prerequisites Required permissions Classroom location Meeting days Class hours Department location Web page None None Skylight Room- 306, 17

More information

SERP 523b: Braille 2 University of Arizona Department of Special Education, Rehabilitation and School Psychology Spring 2009

SERP 523b: Braille 2 University of Arizona Department of Special Education, Rehabilitation and School Psychology Spring 2009 SERP 523b: Braille 2 University of Arizona Department of Special Education, Rehabilitation and School Psychology Spring 2009 L. Penny Rosenblum Office: 520-621-1223 University of Arizona Fax: 520-621-3821

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

MATH 2600 - Probability & Statistics - Fall Semester 2015 Dr. Brandon Samples - Department of Mathematics - Georgia College

MATH 2600 - Probability & Statistics - Fall Semester 2015 Dr. Brandon Samples - Department of Mathematics - Georgia College MATH 2600 - Probability & Statistics - Fall Semester 2015 Dr. Brandon Samples - Department of Mathematics - Georgia College Course Information: CRN: 80123 Lecture: MWF: 8 am - 8:50 am Building: Arts &

More information

Department of Accounting ACC 311 - Fundamentals of Financial Accounting Syllabus

Department of Accounting ACC 311 - Fundamentals of Financial Accounting Syllabus Department of Accounting ACC 311 - Fundamentals of Financial Accounting Syllabus Instructor: Kristen Valentine E-mail: kristen.valentine@mccombs.utexas.edu Office: CBA 5.334W Office Hours: Monday Thursday

More information

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

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

More information

ADDRESS: College of Business, 500 University Ave W, Minot, ND 58707

ADDRESS: College of Business, 500 University Ave W, Minot, ND 58707 Minot State University BUSINESS INFORMATION TECHNOLOGY DEPARTMENT Course Outline-Fall08 COURSE: System Analysis (BIT 453) COURSE CREDIT: 3.0 Credit Hours INSTRUCTOR: Mehdi S. Tehrani (PhD) E-mail: m.tehrani@minotstateu.edu

More information

Introduction to Business Course Syllabus. Dr. Michelle Choate Office # C221 Phone: 305-809-3202 Mobile Office: 828-329-2157

Introduction to Business Course Syllabus. Dr. Michelle Choate Office # C221 Phone: 305-809-3202 Mobile Office: 828-329-2157 Introduction to Business Course Syllabus COURSE TITLE Introduction to Business COURSE NUMBER GEB 1011 (11137) PREREQUISITES None CREDIT HOURS 3 CONTACT HOURS 45 CLASS MEETING TIMES CLASS METHOD Virtual

More information

FINC 4531 B Intermediate Corporate Finance Tuesdays and Thursdays from 5:30-6:45, Adamson 227 Expanded Course Outline Fall 2010

FINC 4531 B Intermediate Corporate Finance Tuesdays and Thursdays from 5:30-6:45, Adamson 227 Expanded Course Outline Fall 2010 FINC 4531 B Intermediate Corporate Finance Tuesdays and Thursdays from 5:30-6:45, Adamson 227 Expanded Course Outline Fall 2010 Professor: Charles Hodges Office: ADAMSON 205B Telephone: (678) 839-4816

More information

COMMONWEALTH OF MASSACHUSETTS BUNKER HILL COMMUNITY COLLEGE CHARLESTOWN, MASSACHUSETTS COMPUTER INFORMATION TECHNOLOGY DEPARTMENT

COMMONWEALTH OF MASSACHUSETTS BUNKER HILL COMMUNITY COLLEGE CHARLESTOWN, MASSACHUSETTS COMPUTER INFORMATION TECHNOLOGY DEPARTMENT COMMONWEALTH OF MASSACHUSETTS BUNKER HILL COMMUNITY COLLEGE CHARLESTOWN, MASSACHUSETTS COMPUTER INFORMATION TECHNOLOGY DEPARTMENT CIT 523 PYTHON PROGRAMMING COURSE OUTLINE & REQUIREMENTS COURSE DESCRIPTION:

More information

Course Syllabus PEHR 2990 - Sports Marketing, Game Management & Promotions Dixie State College of Utah Fall 2012

Course Syllabus PEHR 2990 - Sports Marketing, Game Management & Promotions Dixie State College of Utah Fall 2012 Course Syllabus PEHR 2990 - Sports Marketing, Game Management & Promotions Dixie State College of Utah Fall 2012 Instructor: Jason Herbers Office: Burns Arena 134 Office Hours: 9:00-10:00 am Mon, Wed Phone:

More information

University of Central Florida Rosen Campus

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

More information

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

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

More information

MATHEMATICAL TOOLS FOR ECONOMICS ECON 1078-002 FALL 2011

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

More information

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

Texas A&M University - Commerce Course syllabus Fall 2012

Texas A&M University - Commerce Course syllabus Fall 2012 Instructor: Dr. Thomas J. Faulkenberry Office Location: Library 228 Office Hours: TWTh 1:30-3:00 pm (or by appointment) Office Phone: 903-468-8170 Skype: tomfaulkenberry University Email Address: Thomas.Faulkenberry@tamuc.edu

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

Multimedia & the World Wide Web

Multimedia & the World Wide Web Multimedia & the World Wide Web Winter 2014 Quarter HCI 201 section 201 Class Meeting Times: Tuesdays, 1:00 PM to 2:30 PM Thursdays, 1:00 PM to 2:30 PM Instructor: Sal J. Barry Email: sbarry5@cdm.depaul.edu

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

AUSTIN COMMUNITY COLLEGE DEPARTMENT OF COMPUTER STUDIES AND ADVANCED TECHNOLOGY

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

More information

Introduction to 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

North Arkansas College Student Course Syllabus Spring 2015

North Arkansas College Student Course Syllabus Spring 2015 North Arkansas College Student Course Syllabus Spring 2015 : INSTRUCTOR: OFFICE: OFFICE HOURS: College Algebra / MAT 1223 / 3 credit hours Sherry Jennings G200B M/W 8:30-9 am and 11 am 12 pm(g200b) F 9

More information

MATH 101 E.S. COLLEGE ALGEBRA FALL 2011 SYLLABUS

MATH 101 E.S. COLLEGE ALGEBRA FALL 2011 SYLLABUS Instructor: Phone: Office: Email: Office Hours: http://math.nicholls.edu/math/faculty.asp Link to Blackboard: http://blackboard.nicholls.edu M.E.W. Web Address: http://math.nicholls.edu/mew Text: Algebra

More information

LeMoyne-Owen College Division of Natural and Mathematical Sciences COMPUTER ALGORITHMS, COSI 335 Fall 2013. Syllabus

LeMoyne-Owen College Division of Natural and Mathematical Sciences COMPUTER ALGORITHMS, COSI 335 Fall 2013. Syllabus LeMoyne-Owen College Division of Natural and Mathematical Sciences COMPUTER ALGORITHMS, COSI 335 Fall 2013 Instructor: Valerie Chu, Ph.D. Office Room: GOH 400D Office Phone: (901) 435-1378 Office Hours:

More information

Course Syllabus: Math 1314 College Algebra Spring 2016 T/R

Course Syllabus: Math 1314 College Algebra Spring 2016 T/R Course Syllabus: Math 1314 College Algebra Spring 2016 T/R Instructor:Vallery Schmidt Office Location:Bin 324 Office Hours: T: 8am 12pm, R: 3:30pm 5:30pm, &/or by appointment Office Phone: 903 886 5959

More information

COURSE NUMBER AND TITLE: Management Information Systems Concepts

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

More information

College Algebra MATH 1111/11

College Algebra MATH 1111/11 College Algebra MATH 1111 Spring 2011 Instructor: Gordon Shumard Class: CRN Days Time Course Num/Sec Location 12293 T R 8:00AM-9:15AM MATH 1111/09 Burruss Building- 109 12294 T R 9:30AM- 10:45AM MATH 1111/11

More information

Math 143: College Algebra Spring 2016 - - 8- Week Session

Math 143: College Algebra Spring 2016 - - 8- Week Session Math 143: College Algebra Spring 2016 - - 8- Week Session Course Description and Foundational Studies Program Objectives Boise State's Foundational Studies Program provides undergraduates with a broad-

More information

BUDT 758B-0501: Big Data Analytics (Fall 2015) Decisions, Operations & Information Technologies Robert H. Smith School of Business

BUDT 758B-0501: Big Data Analytics (Fall 2015) Decisions, Operations & Information Technologies Robert H. Smith School of Business BUDT 758B-0501: Big Data Analytics (Fall 2015) Decisions, Operations & Information Technologies Robert H. Smith School of Business Instructor: Kunpeng Zhang (kzhang@rmsmith.umd.edu) Lecture-Discussions:

More information

CS 261 C and Assembly Language Programming. Course Syllabus

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

More information

Thursday 11:00 a.m. - 12:00 p.m. and by appointment

Thursday 11:00 a.m. - 12:00 p.m. and by appointment Instructor Information Instructor: CIS 4: Introduction to Computers, Business Applications Gina Jerry Phone: 310-434-4686 E-mail: Website: Course Website: Office: Office Hours: Course Description jerry_gina@smc.edu

More information

HARFORD COMMUNITY COLLEGE 401 Thomas Run Road Bel Air, MD 21015 Course Outline

HARFORD COMMUNITY COLLEGE 401 Thomas Run Road Bel Air, MD 21015 Course Outline HARFORD COMMUNITY COLLEGE 401 Thomas Run Road Bel Air, MD 21015 Course Outline CIS 210 COURSE NUMBER: CIS 210 COURSE NAME: MEETING PLACE: Random On-Line DIVISION: Business, Computing & Applied Technology

More information

COURSE OUTLINE SOC SCI 2PF3. Personal Financial Management for Social Science Students

COURSE OUTLINE SOC SCI 2PF3. Personal Financial Management for Social Science Students COURSE OUTLINE SOC SCI 2PF3 Personal Financial Management for Social Science Students Day of the Week: Mondays 4:30-6:30 PM Wednesdays 5:30-6:30 PM Location: BSB/119 McMaster University Instructor: Tony

More information