Home > Semester 3 > Object-Oriented Programming

Object-Oriented Programming (BTCS 302-18)

Course Details

3 Lectures, 0 Tutorial, 0 Practical, 3 Credits

Pre-requisites

Programming in C

Detailed Contents

Module 1: Introduction

Overview of C++, Sample C++ program, Different data types, operators, expressions, and statements, arrays and strings, pointers & function components, recursive functions, user-defined types, function overloading, inline functions

Module 2: Classes & Objects – I

Classes, Scope resolution operator, passing objects as arguments, returning objects, and object assignment

Module 3: Classes & Objects – II

Constructors, Destructors, friend functions, Parameterized constructors, Static data members, Functions, Arrays of objects, Pointers to objects, this pointer, and reference parameter, Dynamic allocation of objects, Copy constructors, Operator overloading using friend functions

Module 4: Inheritance

Base Class, Inheritance and protected members, Protected base class inheritance, Inheriting multiple base classes, Constructors, Destructors and Inheritance, Passing parameters to base class constructors, Granting access, Virtual base classes

Module 5: Virtual Functions, Polymorphism

Virtual function, calling a Virtual function through a base class reference, Virtual attribute is inherited, Virtual functions are hierarchical, pure virtual functions, Abstract classes, Using virtual functions, Early and late binding

Module 6: Exception Handling

Basics of exception handling, exception handling mechanism, throwing mechanism, catching mechanism, I/O System Basics, File I/O: Exception handling fundamentals, Exception handling options. C++ stream classes, Formatted I/O, fstream and the File classes, Opening and closing a file, Reading and writing text files

Course Outcomes

The student will be able to:

  1. Identify classes, objects, members of a class and the relationships among them needed to solve a specific problem
  2. Demonstrate the concept of constructors and destructors. And create new definitions for some of the operators
  3. Create function templates, overload function templates
  4. Understand and demonstrate the concept of data encapsulation, inheritance, polymorphism with virtual functions
  5. Demonstrate the concept of file operations, streams in C++ and various I/O manipulators
  6. Suggested Books

    Main Textbook:

  7. E. Balagurusamy, Object Oriented Programming with C++, Tata McGraw Hill
  8. Reference Books:


    Object-Oriented Programming Lab (BTCS 304-18)

    Course Details

    0 Lectures, 0 Tutorial, 4 Practical, 2 Credits

    List of Experiments

    1. Write a program that uses a class where the member functions are defined inside a class
    2. Write a program that uses a class where the member functions are defined outside a class
    3. Write a program to demonstrate the use of static data members
    4. Write a program to demonstrate the use of const data members
    5. Write a program to demonstrate the use of zero argument and parameterized constructors
    6. Write a program to demonstrate the use of dynamic constructor
    7. Write a program to demonstrate the use of explicit constructor
    8. Write a program to demonstrate the use of initializer list
    9. Write a program to demonstrate the overloading of increment and decrement operators
    10. Write a program to demonstrate the overloading of memory management operators
    11. Write a program to demonstrate the typecasting of basic type to class type
    12. Write a program to demonstrate the typecasting of class type to basic type
    13. Write a program to demonstrate the typecasting of class type to class type
    14. Write a program to demonstrate the multiple inheritances
    15. Write a program to demonstrate the runtime polymorphism
    16. Write a program to demonstrate the exception handling
    17. Write a program to demonstrate the use of class template
    18. Write a program to demonstrate the reading and writing of mixed type of data

    Lab Outcomes

    The student will be able to:

    1. Develop classes incorporating object-oriented techniques
    2. Design and implement object-oriented concepts of inheritance and polymorphism
    3. Illustrate and implement STL class of containers and need for exceptions to handle errors for object oriented programs
    4. Design and implement any real world based problem involving GUI interface using object-oriented concepts