CS 132: Advanced Programming with C++

Class Program
Distribution
Specified Elective
Credits 5 Lecture Hours 22 Lab Hours 66
This course expands on the fundamentals covered in CS& 131. Students will develop intermediate C++ programs for both traditional data processing and object-oriented applications. Through the experience of creating these programs and methods the student will learn advanced features of C++ object-oriented programming to solve problems in various domains.
Quarters Offered
Fall,
Winter,
Spring
Course Outcomes

Upon successful completion of the course, students should be able to demonstrate the following knowledge or skills:

  1. Create C++ programs of intermediate to advanced complexity using procedural and object-oriented design techniques, structured problem solving and data abstraction.
  2. Utilize recursion as a problem solving technique and define simple recursive functions.
  3. Use pointers and indirection to dynamically allocate memory, arrays and objects.
  4. Solve problems involving 2 dimensional arrays or vectors.
  5. Sort an array by implementing the Bubble Sort and Insertion Sort algorithms.
  6. Implement the binary search algorithm to efficiently search a sorted array.
  7. Compose object-oriented programs using concepts such as classes, objects, composition, inheritance, and polymorphism.
  8. Explore advanced techniques such as operator overloading and templates.
  9. Create custom exception classes and use exception handling to throw and catch common errors.
  10. Use pointers to explore and implement the linked list data structure
Institutional Outcomes
IO1 Communication: Students will be able to communicate clearly and effectively within a workplace context
IO2 Quantitative Reasoning: Analyze and solve computational problems using a modern program language
Course Content Outline
  1. 2D Arrays / 2D Vectors
  2. Recursion
  3. Pointers & Dynamic Memory Allocation
  4. Classes & Objects
  5. Inheritance & Polymorphism
  6. Operator Overloading & Templates
  7. Exception Handling
  8. Linked Lists