Computer Science CS 515 Data Structures Fall 2015

Size: px
Start display at page:

Download "Computer Science CS 515 Data Structures Fall 2015"

Transcription

1 Computer Science CS 515 Data Structures Fall 2015 Instructor: Karen Jin Office: Kingsbury W253 jin at cs.unh.edu Office Hours: Open Door and by appointment TA: Lecture: Lab: Madison Clark- Turner mbc2004 at wildcats.unh.edu Section 01: MWF 9:10am - 10am Section 02: MWF 10:10am 11am Section 01: M 12:10pm - 2pm Section 02: M 2:10pm - 4pm Section 03: M 4:10pm - 6pm Lecture Room: Lab Room: Kingsbury N113 Kingsbury N21 Course Description This class has a number of goals: to provide an introduction to the C++ programming language; to provide an introduction to address and dynamic memory manipulation; to provide an introduction to the analysis of algorithms; to introduce a number of sorting algorithms; to introduce more advanced data structures; and to provide an insight as to how the basic and advanced data structures may be implemented. Prerequisites: CS416 Evaluation Criteria 3% Programming Assignments 24% Labs 15% Test 1 20% Test 2 3% Class Participation Programming Assignments: There will be tentatively 12 individual programming assignments. See intro slides for details on academic integrity. Assignments are always due on Monday night at 11:59 p.m. You have 15 minutes grace period till 12:14 a.m. to submit your program. There are no late day submissions. 1

2 You may resubmit any programming assignments within approximately 24 hours after the initial grading results are released. Each assignment is calculated by the formula below: < S (20 F + 0) if S > F final grade = : first grade otherwise where F = first grade 100 and S = second grade 100 Students will not be given extensions for programs unless they have extenuating circumstances as decided by the instructor. Programs will be graded mainly on "external correctness" (behavior) and also on "internal correctness" (style and design). Disputes about homework grading must be made to course TA within 1 week of receiving the second program grade. Labs There will be one lab each week. You must attend the lab session you are registered in. Lab attendance is not mandatory. However, you will receive 50% credit on the point deduction of your submission if you have attended the lab and the deduction is less than 100 points. < % D if attended the lab && D < 100 final grade = : D otherwise where D = points deduction The deadline of lab is on every Saturday night 11:59pm. You have 15 minutes grace period till 12:14 a.m. to submit your programs. You are encouraged to work with a lab partner for all lab programs. You may share code between you and your lab partner but each of you must turn in separate submissions. There will be no make- ups for labs. Late submissions are not accepted. Disputes about lab grading must be made to course TA within 1 week of receiving the grade. Tests There will be two tests. Students must obtain at least 50% on both tests to pass the course (with D- or better). Test 1 will be held on September 2 in class. Test 2 will be held during the UNH final exam week. You are allowed one page X11 double- sided hand- written cheat sheet for both tests. Books, notes and electronic devices are not allowed. Make- up tests will be given only in case of a serious emergency. You must show evidence that you are unable to take the test, such as a doctor's note. No make- ups will be granted for personal reasons such as travel, personal hardship or leisure. 2

3 Class Participations: Individual or group based written exercises will be handed out during most lecture meetings. The completion of these exercises will be used as a base to measure your class participation. Texts and Resources The recommended textbook for this course is: Data Structures and Algorithm Analysis in C++, 4/e by Mark Allen Weiss Here are some recommended reference books for C++ language. They are both available on Safari Books online. C++ Primer, 5/e by Lippman. Effective C++ and More Effective C++, by Scott Meyers The class notes are available on the course website. We will be using Piazza for class discussion. Course announcements and other resources will be posted through Piazza. Student Learning Outcomes The followings are the tentative student learning outcomes we plan to cover in this course. Describe the fundamental components of C++ language such as variables, pointers and references, control structures, functions, classes and objects. Understand C++ language features such as stream I/O, operator overloading, class and function templates, inheritance and polymorphism, exception handling. Understand and utilize basic STL containers and algorithms. Understand the difference between Abstract Data Types (ADTs) and concrete data structures. Implement and utilize common data structures using C++. Describe and implement stack, queue and variations of list data structure. E.g. ring, doubly linked list, doubly linked ring. Implement a binary search tree data structure and its depth- first and breadth- first traversals. Describe skip list and understand the concept of randomized algorithms. Describe AVL trees, trees, Red- Black trees and B- trees; describe common applications of AVL trees, trees, Red- Black trees and B- trees. Describe hashing and implement mechanisms to deal with collisions in a hash- table. E.g. linear probing, quadratic probing and double hashing. Understand modern hashing techniques such as Cuckoo hashing. Describe binary tries and multi- way tries; describe their applications in string search and matching. Describe and implement binary heaps. Implement the priority- queue ADT using lists and heaps. Understand and implement the Floyd s O(N) heap construction algorithm. Understand Map/Set ADT and compare the performance of various implementations using concrete data structures. E.g. linked lists, search trees, hash tables and tries. Select an appropriate data structure to implement an ADT under a given set of constraints. Determine the efficiency category of operations using big O notation. Understand the basic concept of amortized analysis. 3

4 Analysis, compare and implement various sorting algorithms, including: bubble sort, insertion sort, selection sort, quicksort, merge sort, heap sort, bucket sort and radix sort. Understand the lower bound of comparison- based sorting algorithms. Describe and implement the graph ADT; implement depth- first and breadth- first graph traversals. Describe and implement the Disjoint- Set ADT and its application in graph algorithms. Describe and implement the minimum spanning tree algorithms: Prim's algorithm and Kruskal s algorithm. Describe and implement Dijkstra's single source shortest path algorithm; Floyd- Warshall s all- pair shortest path algorithm. Select and use appropriate algorithm to solve graph problems. Describe algorithm classes: - Greedy algorithms: Dijkstra s algorithm, Prim s algorithm and Kruskal s algorithm, Huffman code. - Divide and conquer: merge sort, quick sort. - Dynamic programming: Floyd- Warshall s algorithm. - Randomized algorithms: skip list insert. Select and use appropriate abstract data types, data structures, and algorithms to solve moderately complex problems. Program testing and debugging. Tentative Class Schedule Week 1: Basic C++; Memory model; Pointers and References Week 2: Functions; objects/class; file I/O Week 3: Operator overloading; class template; STL Week 4: ADT; stack, queue, binary search tree; Skiplists; Week 5: Map ADT and Set ADT; balanced binary search tree; Week 6: AVL tree,; Week 7: tree and Red- black tree; Week : B- tree; C++ Polymorphism Week 9: Hashing; Week 10: Binary Heap; Priority Queue ADT Week 11: Huffman encoding; Tries Week 12: Sorting; Disjoint Set ADT; Week 13: Graph; Greedy algorithm; Minimal Spanning Tree; Kruskal s algorithm; Prim s algorithm; Week 14: Dynamic Programming; Dijkstra s shortest path algorithm; Folyd- Warshall s algorithm; Disability Services The University is committed to providing students with documented disabilities equal access to all university programs and facilities. If you think you have a disability requiring accommodations, you must register with Disability Services for Students (DSS). If you have questions about the process, please contact DSS at (603) or disability.office@unh.edu. If you are registered with DSS, and eligible for accommodations that you would like to utilize in this course, please forward that information to me in a 4

5 timely manner so that we can meet privately in my office to review those accommodations. Emotional or Mental Health Distress Your academic success in this course is very important to me. If, during the semester, you find emotional or mental health issues are affecting that success, please contact the University s Counseling Center (3 rd fl, Smith Hall; /TTY: ) which provides counseling appointments and other mental health services. University Policy on Academic Honesty links to Students Rights, Rules and Policies Classroom Behavior Expectations To insure a climate of learning for all, disruptive or inappropriate behavior (repeated outbursts, disrespect for the ideas of others, etc) may result in exclusion (removal) from this class. As a reminder, cell phone/pda, etc. use, including text messaging, is not permitted in this class by Faculty Senate rule unless by instructor permission. (2009, Behavioral Intervention Team) 5

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

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

Krishna Institute of Engineering & Technology, Ghaziabad Department of Computer Application MCA-213 : DATA STRUCTURES USING C

Krishna Institute of Engineering & Technology, Ghaziabad Department of Computer Application MCA-213 : DATA STRUCTURES USING C Tutorial#1 Q 1:- Explain the terms data, elementary item, entity, primary key, domain, attribute and information? Also give examples in support of your answer? Q 2:- What is a Data Type? Differentiate

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

CSE 326, Data Structures. Sample Final Exam. Problem Max Points Score 1 14 (2x7) 2 18 (3x6) 3 4 4 7 5 9 6 16 7 8 8 4 9 8 10 4 Total 92.

CSE 326, Data Structures. Sample Final Exam. Problem Max Points Score 1 14 (2x7) 2 18 (3x6) 3 4 4 7 5 9 6 16 7 8 8 4 9 8 10 4 Total 92. Name: Email ID: CSE 326, Data Structures Section: Sample Final Exam Instructions: The exam is closed book, closed notes. Unless otherwise stated, N denotes the number of elements in the data structure

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

DATA STRUCTURES USING C

DATA STRUCTURES USING C DATA STRUCTURES USING C QUESTION BANK UNIT I 1. Define data. 2. Define Entity. 3. Define information. 4. Define Array. 5. Define data structure. 6. Give any two applications of data structures. 7. Give

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

Fundamentals of Computer Programming CS 101 (3 Units)

Fundamentals of Computer Programming CS 101 (3 Units) Fundamentals of Computer Programming CS 101 (3 Units) Overview This course introduces students to the field of computer science and engineering. An overview of the disciplines within computer science such

More information

Exam study sheet for CS2711. List of topics

Exam study sheet for CS2711. List of topics Exam study sheet for CS2711 Here is the list of topics you need to know for the final exam. For each data structure listed below, make sure you can do the following: 1. Give an example of this data structure

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

02-201: Programming for Scientists

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

More information

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

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

More information

Master of Science in Computer Science College of Computer and Information Science. Course Syllabus

Master of Science in Computer Science College of Computer and Information Science. Course Syllabus Master of Science in Computer Science College of Computer and Information Science Course Syllabus Course Number/Name: CS 5800 Algorithms (Master Level) Term: Fall 2013, 15 week term, Hybrid Dates: September

More information

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

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

More information

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

CMSC 152: Introduction to Computer Science II

CMSC 152: Introduction to Computer Science II CMSC 152: Introduction to Computer Science II The University of Chicago, Winter 2015 Adam Shaw and Matthew Wachs http://www.classes.cs.uchicago.edu/archive/2014/winter/15200-1 Welcome! In CS152, we introduce

More information

Computer Science. Discipline-Specific Admission Requirements. Alternate Admission Criteria

Computer Science. Discipline-Specific Admission Requirements. Alternate Admission Criteria University of Missouri - Kansas City 1 Computer Science Discipline Coordinator Yugyung Lee, (816) 235-5932, leeyu@umkc.edu Computer Science faculty who are members of the doctoral faculty. Computer Science

More information

International Journal of Software and Web Sciences (IJSWS) www.iasir.net

International Journal of Software and Web Sciences (IJSWS) www.iasir.net International Association of Scientific Innovation and Research (IASIR) (An Association Unifying the Sciences, Engineering, and Applied Research) ISSN (Print): 2279-0063 ISSN (Online): 2279-0071 International

More information

Online Course Syllabus CS320: C Programming

Online Course Syllabus CS320: C Programming Online Course Syllabus CS320: C Programming Important Notes: This document provides an overview of expectations for this online course and is subject to change prior to the term start. Changes may also

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

Sorting revisited. Build the binary search tree: O(n^2) Traverse the binary tree: O(n) Total: O(n^2) + O(n) = O(n^2)

Sorting revisited. Build the binary search tree: O(n^2) Traverse the binary tree: O(n) Total: O(n^2) + O(n) = O(n^2) Sorting revisited How did we use a binary search tree to sort an array of elements? Tree Sort Algorithm Given: An array of elements to sort 1. Build a binary search tree out of the elements 2. Traverse

More information

CSE373: Data Structures and Algorithms Lecture 1: Introduction; ADTs; Stacks/Queues. Linda Shapiro Spring 2016

CSE373: Data Structures and Algorithms Lecture 1: Introduction; ADTs; Stacks/Queues. Linda Shapiro Spring 2016 CSE373: Data Structures and Algorithms Lecture 1: Introduction; ADTs; Stacks/Queues Linda Shapiro Registration We have 180 students registered and others who want to get in. If you re thinking of dropping

More information

DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING LESSON PLAN

DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING LESSON PLAN ERODE SENGUNTHAR ENGINEERING COLLEGE (Approved by AICTE, New Delhi, Permanently Affiliated to Anna University - Chennai & Accredited by NAAC & National Board of Accreditation (NBA), New Delhi, Accredited

More information

Using Web-based Tools to Enhance Student Learning and Practice in Data Structures Course

Using Web-based Tools to Enhance Student Learning and Practice in Data Structures Course Using Web-based Tools to Enhance Student Learning and Practice in Data Structures Course 1. Introduction Chao Chen January 2014 The purpose of this project is to enhance student learning and practice in

More information

BCS2B02: OOP Concepts and Data Structures Using C++

BCS2B02: OOP Concepts and Data Structures Using C++ SECOND SEMESTER BCS2B02: OOP Concepts and Data Structures Using C++ Course Number: 10 Contact Hours per Week: 4 (2T + 2P) Number of Credits: 2 Number of Contact Hours: 30 Hrs. Course Evaluation: Internal

More information

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

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

More information

Psych 302: Research Methods in Psychology

Psych 302: Research Methods in Psychology Iowa State University, Summer 2013 1 Psych 302: Research Methods in Psychology Class Location: Gilman 2305 Class Time: MTWRF 12:10-1:30pm, 6/17 8/9 Instructors Joe Hammer Office: 2030 Student Services

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

Psychology 2510: Survey of Abnormal Psychology (Section 2) Fall 2015

Psychology 2510: Survey of Abnormal Psychology (Section 2) Fall 2015 Psychology 2510: Survey of Abnormal Psychology (Section 2) Fall 2015 Instructor: Julianne Gray Ludlam, Ph.D. Class Location: Psychology Building 313 Class Time: MWF, 9:00-9:50 AM CST Office Location: 25

More information

CS5310 Algorithms 3 credit hours 2 hours lecture and 2 hours recitation every week

CS5310 Algorithms 3 credit hours 2 hours lecture and 2 hours recitation every week CS5310 Algorithms 3 credit hours 2 hours lecture and 2 hours recitation every week This course is a continuation of the study of data structures and algorithms, emphasizing methods useful in practice.

More information

Computer Science CS 2334: Programming structures and abstractions

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

More information

University of Dayton Department of Computer Science Undergraduate Programs Assessment Plan DRAFT September 14, 2011

University of Dayton Department of Computer Science Undergraduate Programs Assessment Plan DRAFT September 14, 2011 University of Dayton Department of Computer Science Undergraduate Programs Assessment Plan DRAFT September 14, 2011 Department Mission The Department of Computer Science in the College of Arts and Sciences

More information

INSTRUCTOR INFORMATION Instructor: Adrienne Petersen Email: arpetersen@unr.edu Office: DMS 233 Office Hours: TuTh 11am-1pm by appointment

INSTRUCTOR INFORMATION Instructor: Adrienne Petersen Email: arpetersen@unr.edu Office: DMS 233 Office Hours: TuTh 11am-1pm by appointment Math 120: Fundamentals of College Math Mathematics and Statistics Department, University of Nevada, Reno Section 1001, TuTh 2:30-3:45pm, FH 106 Section 1002, TuTh 1:00-2:15pm, FH 207 Fall 2014 INSTRUCTOR

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

To My Parents -Laxmi and Modaiah. To My Family Members. To My Friends. To IIT Bombay. To All Hard Workers

To My Parents -Laxmi and Modaiah. To My Family Members. To My Friends. To IIT Bombay. To All Hard Workers To My Parents -Laxmi and Modaiah To My Family Members To My Friends To IIT Bombay To All Hard Workers Copyright 2010 by CareerMonk.com All rights reserved. Designed by Narasimha Karumanchi Printed in

More information

2. (a) Explain the strassen s matrix multiplication. (b) Write deletion algorithm, of Binary search tree. [8+8]

2. (a) Explain the strassen s matrix multiplication. (b) Write deletion algorithm, of Binary search tree. [8+8] Code No: R05220502 Set No. 1 1. (a) Describe the performance analysis in detail. (b) Show that f 1 (n)+f 2 (n) = 0(max(g 1 (n), g 2 (n)) where f 1 (n) = 0(g 1 (n)) and f 2 (n) = 0(g 2 (n)). [8+8] 2. (a)

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

Major Topics Covered in the Course

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

More information

Binary Heap Algorithms

Binary Heap Algorithms CS Data Structures and Algorithms Lecture Slides Wednesday, April 5, 2009 Glenn G. Chappell Department of Computer Science University of Alaska Fairbanks CHAPPELLG@member.ams.org 2005 2009 Glenn G. Chappell

More information

1) The postfix expression for the infix expression A+B*(C+D)/F+D*E is ABCD+*F/DE*++

1) The postfix expression for the infix expression A+B*(C+D)/F+D*E is ABCD+*F/DE*++ Answer the following 1) The postfix expression for the infix expression A+B*(C+D)/F+D*E is ABCD+*F/DE*++ 2) Which data structure is needed to convert infix notations to postfix notations? Stack 3) The

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

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

Questions 1 through 25 are worth 2 points each. Choose one best answer for each.

Questions 1 through 25 are worth 2 points each. Choose one best answer for each. Questions 1 through 25 are worth 2 points each. Choose one best answer for each. 1. For the singly linked list implementation of the queue, where are the enqueues and dequeues performed? c a. Enqueue in

More information

Bachelor of Games and Virtual Worlds (Programming) Subject and Course Summaries

Bachelor of Games and Virtual Worlds (Programming) Subject and Course Summaries First Semester Development 1A On completion of this subject students will be able to apply basic programming and problem solving skills in a 3 rd generation object-oriented programming language (such as

More information

DSBA/MBAD 6211 Advanced Business Analytics UNC Charlotte Fall 2015

DSBA/MBAD 6211 Advanced Business Analytics UNC Charlotte Fall 2015 DSBA/MBAD 6211 Advanced Business Analytics UNC Charlotte Fall 2015 Instructor: Dr. Kexin Zhao Office: 351B Friday Phone: 704-687-7637 Email: kzhao2@uncc.edu Class Hours: Monday 5:30-8:15pm Classroom: Center

More information

Data Structure [Question Bank]

Data Structure [Question Bank] Unit I (Analysis of Algorithms) 1. What are algorithms and how they are useful? 2. Describe the factor on best algorithms depends on? 3. Differentiate: Correct & Incorrect Algorithms? 4. Write short note:

More information

Syllabus MAC1105 College Algebra

Syllabus MAC1105 College Algebra Syllabus MAC1105 College Algebra Term: Reference #: Instructor s Name: E-mail: Office: Math Lab, Room # 2223 Mail-box: Math Lab, Room # 2223 Office Hours: To leave a message for the instructor, please

More information

CS 394 Introduction to Computer Architecture Spring 2012

CS 394 Introduction to Computer Architecture Spring 2012 CS 394 Introduction to Computer Architecture Spring 2012 Class Room/Hours: NA (Online course) Lab Room/Hours: NA Instructor: Abu Asaduzzaman (Dr. Zaman) Office Room: 253 Jabara Hall E-mail: Abu.Asaduzzaman@wichita.edu

More information

PH 7525 Introduction to Data & Statistical Packages Course Reference #: 18254 Spring 2011

PH 7525 Introduction to Data & Statistical Packages Course Reference #: 18254 Spring 2011 PH 7525 Introduction to Data & Statistical Packages Course Reference #: 18254 Spring 2011 Scott R. Weaver, Ph.D. Division of Epidemiology & Biostatistics Course Basics Faculty Accessibility Class Day/Time:

More information

Math 143 - College Algebra (Online)

Math 143 - College Algebra (Online) Math 143 - College Algebra (Online) 3 Credits Term: Instructor: Spring 2010 Ken Floyd (208) 732-6583 Office Location: Office Hours: Shields 206E 1-2 PM, M - F E-mail: kfloyd@csi.edu 10 AM - Noon Saturday

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

ECON643 Empirical Analysis I: Foundations of Empirical Research

ECON643 Empirical Analysis I: Foundations of Empirical Research University of Maryland Fall 2015 Instructor: Prof. Ephraim Leibtag E-mail: leibtag@econ.umd.edu Phone: 202-694-5349 TA: Burak Turkgulu, MastersTA@econ.umd.edu Class Location: 1400 16 th Street NW Department

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

Course Content Concepts

Course Content Concepts CS 1371 SYLLABUS, Spring, 2016 Revised 1/8/16 Computing for Engineers Course Content Concepts The students will be expected to be familiar with the following concepts, either by writing code to solve problems,

More information

CENTRAL COLLEGE Department of Mathematics COURSE SYLLABUS

CENTRAL COLLEGE Department of Mathematics COURSE SYLLABUS CENTRAL COLLEGE Department of Mathematics COURSE SYLLABUS MATH 1314: College Algebra Fall 2010 / Tues-Thurs 7:30-9:00 pm / Gay Hall Rm 151 / CRN: 47664 INSTRUCTOR: CONFERENCE TIMES: CONTACT INFORMATION:

More information

Basic Programming and PC Skills: Basic Programming and PC Skills:

Basic Programming and PC Skills: Basic Programming and PC Skills: Texas University Interscholastic League Contest Event: Computer Science The contest challenges high school students to gain an understanding of the significance of computation as well as the details of

More information

Syllabus for MTH 311 Numerical Analysis

Syllabus for MTH 311 Numerical Analysis MTH 311 Numerical Analysis Syllabus, Spring 2016 1 Cleveland State University Department of Mathematics Syllabus for MTH 311 Numerical Analysis Fall 2016: January 20 May 13 1 Instructor Information Instructor:

More information

CENTRAL TEXAS COLLEGE SYLLABUS FOR DSMA 0306 INTRODUCTORY ALGEBRA. Semester Hours Credit: 3

CENTRAL TEXAS COLLEGE SYLLABUS FOR DSMA 0306 INTRODUCTORY ALGEBRA. Semester Hours Credit: 3 CENTRAL TEXAS COLLEGE SYLLABUS FOR DSMA 0306 INTRODUCTORY ALGEBRA Semester Hours Credit: 3 (This course is equivalent to DSMA 0301. The difference being that this course is offered only on those campuses

More information

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

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

More information

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

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

BUS4 118S Big Data San José State University Fall 2014

BUS4 118S Big Data San José State University Fall 2014 BUS4 118S Big Data San José State University Fall 2014 When and Where When: Thursday 6:00 pm 8:45 pm Where: Boccardo Business Classroom (BBC) 320 Instructor Dr. Scott Jensen Office: BT 252 Phone: (408)

More information

An Introduction to Programming and Computer Science

An Introduction to Programming and Computer Science An Introduction to Programming and Computer Science Maria Litvin Phillips Academy, Andover, Massachusetts Gary Litvin Skylight Software, Inc. Skylight Publishing Andover, Massachusetts Copyright 1998 by

More information

MATHEMATICS Unit Decision 1

MATHEMATICS Unit Decision 1 General Certificate of Education January 2008 Advanced Subsidiary Examination MATHEMATICS Unit Decision 1 MD01 Tuesday 15 January 2008 9.00 am to 10.30 am For this paper you must have: an 8-page answer

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

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

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

More information

Math 1302 (College Algebra) Syllabus Fall 2015 (Online)

Math 1302 (College Algebra) Syllabus Fall 2015 (Online) Math 1302 (College Algebra) Syllabus Fall 2015 (Online) Instructor: Mrs. Paula Koca Fax: (325) 942 2503 Office: MCS 220L E mail: Paula.Koca@angelo.edu Office Phone: (325) 486 5437 Office Hours: Mon/Wed

More information

GUJARAT TECHNOLOGICAL UNIVERSITY, AHMEDABAD, GUJARAT. Course Curriculum. DATA STRUCTURES (Code: 3330704)

GUJARAT TECHNOLOGICAL UNIVERSITY, AHMEDABAD, GUJARAT. Course Curriculum. DATA STRUCTURES (Code: 3330704) GUJARAT TECHNOLOGICAL UNIVERSITY, AHMEDABAD, GUJARAT Course Curriculum DATA STRUCTURES (Code: 3330704) Diploma Programme in which this course is offered Semester in which offered Computer Engineering,

More information

Dr. Stanny EXP 3082L Fall 2003 EXPERIMENTAL PSYCHOLOGY LABORATORY. Office Hours For Dr. Stanny: 9:00 AM - 11:30 AM Tuesday, Wednesday, & Thursday

Dr. Stanny EXP 3082L Fall 2003 EXPERIMENTAL PSYCHOLOGY LABORATORY. Office Hours For Dr. Stanny: 9:00 AM - 11:30 AM Tuesday, Wednesday, & Thursday Dr. Stanny EXP 3082L Fall 2003 Instructor: Dr. Claudia J. Stanny Office: Room 214 / Bldg 41 Telephone: 474-3163 e-mail: CStanny@uwf.edu EXPERIMENTAL PSYCHOLOGY LABORATORY Office Hours For Dr. Stanny: 9:00

More information

Basic info Course: CS 165 Accelerated Introduction to Computer Science Credits: 8 Instructor: Tim Alcon Email: timothy.alcon@oregonstate.

Basic info Course: CS 165 Accelerated Introduction to Computer Science Credits: 8 Instructor: Tim Alcon Email: timothy.alcon@oregonstate. Basic info Course: CS 165 Accelerated Introduction to Computer Science Credits: 8 Instructor: Tim Alcon Email: timothy.alcon@oregonstate.edu Two fundamental rules 1. You are responsible for knowing the

More information

CS 207 - Data Science and Visualization Spring 2016

CS 207 - Data Science and Visualization Spring 2016 CS 207 - Data Science and Visualization Spring 2016 Professor: Sorelle Friedler sorelle@cs.haverford.edu An introduction to techniques for the automated and human-assisted analysis of data sets. These

More information

MKTG 330 FLORENCE: MARKET RESEARCH Syllabus Spring 2011 (Tentative)

MKTG 330 FLORENCE: MARKET RESEARCH Syllabus Spring 2011 (Tentative) INSTRUCTOR: Ta Tao Chuang, Ph.D. OFFICE and OFFICE HOURS: tba and by appointment EMAIL: chuang@jepson.gonzaga.edu BLACKBOARD: http://learn.gonzaga.edu DAYS, TIMES & ROOM: M, W 5:15 6:45 pm (15 weeks) IMPORTANT

More information

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

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

More information

Syllabus: Web Design 1

Syllabus: Web Design 1 Syllabus: Web Design 1 Web Design introduces the requirements and technical limitations needed for the design of pages on the World Wide Web (WWW). Learn principles of design with respect to graphics,

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

Java Software Structures

Java Software Structures INTERNATIONAL EDITION Java Software Structures Designing and Using Data Structures FOURTH EDITION John Lewis Joseph Chase This page is intentionally left blank. Java Software Structures,International Edition

More information

Florida Gulf Coast University. Spring, 2016 MAN 3320: EMPLOYEE STAFFING

Florida Gulf Coast University. Spring, 2016 MAN 3320: EMPLOYEE STAFFING Florida Gulf Coast University Spring, 2016 MAN 3320: EMPLOYEE STAFFING Dr. Monika Renard, PhD, MBA, BBA, BS* Mrenard@fgcu.edu Professor, Department of Management Past Chief Negotiator & President, UFF

More information

George Washington University Department of Psychology PSYC 001: General Psychology

George Washington University Department of Psychology PSYC 001: General Psychology George Washington University Department of Psychology PSYC 001: General Psychology Course Syllabus Fall 2006 Times & Place Section 14 (CRN #70754) Tues & Thurs: 11:10am 12:25pm: Corcoran #302 Section 15

More information

MATH 101-07: College Algebra Fall 2013

MATH 101-07: College Algebra Fall 2013 MATH 101-07: College Algebra Fall 2013 Course Meeting Location: Wickersham 101 Class Meetings: 5:00-5:50 MTR (CRN 4821) Course Instructor of Record: Dr. Cynthia Taylor Ph (Office): (717) 871-2417 E-mail:

More information

CEC225 COURSE COMPACT

CEC225 COURSE COMPACT CEC225 COURSE COMPACT Course GEC 225 Applied Computer Programming II(2 Units) Compulsory Course Duration Two hours per week for 15 weeks (30 hours) Lecturer Data Name of the lecturer: Dr. Oyelami Olufemi

More information

Heaps & Priority Queues in the C++ STL 2-3 Trees

Heaps & Priority Queues in the C++ STL 2-3 Trees Heaps & Priority Queues in the C++ STL 2-3 Trees CS 3 Data Structures and Algorithms Lecture Slides Friday, April 7, 2009 Glenn G. Chappell Department of Computer Science University of Alaska Fairbanks

More information

Curriculum Map. Discipline: Computer Science Course: C++

Curriculum Map. Discipline: Computer Science Course: C++ Curriculum Map Discipline: Computer Science Course: C++ August/September: How can computer programs make problem solving easier and more efficient? In what order does a computer execute the lines of code

More information

PES Institute of Technology-BSC QUESTION BANK

PES Institute of Technology-BSC QUESTION BANK PES Institute of Technology-BSC Faculty: Mrs. R.Bharathi CS35: Data Structures Using C QUESTION BANK UNIT I -BASIC CONCEPTS 1. What is an ADT? Briefly explain the categories that classify the functions

More information

University of Pune Revised Structure for the B. Sc. (Computer Science) Course (Second Year to be implemented from Academic Year 2014-2015)

University of Pune Revised Structure for the B. Sc. (Computer Science) Course (Second Year to be implemented from Academic Year 2014-2015) University of Pune Revised Structure for the B. Sc. (Computer Science) Course (Second Year to be implemented from Academic Year 2014-2015) S. Y. B. Sc. (Computer Science) No Paper Title: Semester I Title:

More information

INFO 3229 001 & 090 Business Data Communications and Information Security Fall 2014

INFO 3229 001 & 090 Business Data Communications and Information Security Fall 2014 INFO 3229 001 & 090 Business Data Communications and Information Security Fall 2014 INSTRUCTOR: Dr. Sungjune Park OFFICE: 353B Friday PHONE: (704) 687-7628 EMAIL: supark@uncc.edu OFFICE HOURS: Tue & Thu

More information

2010-2011 Assessment for Master s Degree Program Fall 2010 - Spring 2011 Computer Science Dept. Texas A&M University - Commerce

2010-2011 Assessment for Master s Degree Program Fall 2010 - Spring 2011 Computer Science Dept. Texas A&M University - Commerce 2010-2011 Assessment for Master s Degree Program Fall 2010 - Spring 2011 Computer Science Dept. Texas A&M University - Commerce Program Objective #1 (PO1):Students will be able to demonstrate a broad knowledge

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

GENERAL PSYCHOLOGY, PSC 1, Section 2

GENERAL PSYCHOLOGY, PSC 1, Section 2 Instructors GENERAL PSYCHOLOGY, PSC 1, Section 2 Spring Quarter 2014 MTWTh 3:10 4:00 pm, 100 Hunt Hall This is a course that is team-taught by four advanced psychology graduate students, in the following

More information

Computer Science 1015F ~ 2010 ~ Notes to Students

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

More information

CS4320 Computer and Network Security. Fall 2015 Syllabus

CS4320 Computer and Network Security. Fall 2015 Syllabus CS4320 Computer and Network Security Instructor: Lopamudra Roychoudhuri E-mail: lroychoudhuri@angelo.edu Office: MCS 205E Campus Phone: (325) 486-5448 Class Times: MWF 1:00-1:50pm Classroom: MCS 111A Course

More information

PSYC 2301.211 General Psychology Course Syllabus

PSYC 2301.211 General Psychology Course Syllabus PSYC 2301.211 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

More information

Abstract Data Type. EECS 281: Data Structures and Algorithms. The Foundation: Data Structures and Abstract Data Types

Abstract Data Type. EECS 281: Data Structures and Algorithms. The Foundation: Data Structures and Abstract Data Types EECS 281: Data Structures and Algorithms The Foundation: Data Structures and Abstract Data Types Computer science is the science of abstraction. Abstract Data Type Abstraction of a data structure on that

More information

AP Computer Science Summer Assignment Due: 1 st day of class, as you walk into the door!

AP Computer Science Summer Assignment Due: 1 st day of class, as you walk into the door! AP Computer Science Summer Assignment Due: 1 st day of class, as you walk into the door! Purpose: The purpose of the AP Computer Science summer assignment is to prepare the student for the challenges in

More information

CS 450/650 Fundamentals of Integrated Computer Security

CS 450/650 Fundamentals of Integrated Computer Security CS 450/650 Fundamentals of Integrated Computer Security Course Information Department of Computer Science & Engineering UNR, Fall 2014 Class hours Tuesday & Thursday, 1:00 2:15am @ PE 101 Instructor E

More information

1 FCS Project Submission System

1 FCS Project Submission System 1 FCS Project Submission System Teachers at FCS currently accept digital homework via email. However, email is cumbersome, because teachers must individually download the attached homework from every student,

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

Experimental Psychology PSY 3017, CRN 80485 Fall 2011

Experimental Psychology PSY 3017, CRN 80485 Fall 2011 Credit hours: 3 Class time: Friday 11:00 AM 1:45 PM Class location: Griffin Hall 205 Experimental Psychology PSY 3017, CRN 80485 Fall 2011 Instructor: Elena Stepanova, Ph.D., Assistant Professor of Psychology

More information

CENTRAL TEXAS COLLEGE SYLLABUS FOR CDEC 1354 CHILD GROWTH AND DEVELOPMENT 12 2014 6:30-8:30 P.M. 217 RM

CENTRAL TEXAS COLLEGE SYLLABUS FOR CDEC 1354 CHILD GROWTH AND DEVELOPMENT 12 2014 6:30-8:30 P.M. 217 RM CENTRAL TEXAS COLLEGE SYLLABUS FOR CDEC 1354 CHILD GROWTH AND DEVELOPMENT 12 August-2 October 2014 6:30-8:30 P.M. Bldg 217 RM 209 Semester Hours Credit: 3 INSTRUCTOR: Tammy Gibbs OFFICE HOURS: By appointment

More information