Grade "A+" Accredited by NAAC with a CGPA of 3.46
Grade "A+" Accredited by NAAC with a CGPA of 3.46

Programming Fundamentals using C++

Course ID
BHCS 01
Level
Undergraduate
Program
B.Sc. CS (Hons.)
Semester
First
Credits
6.0
Paper Type
Core Course
Method
Lecture & Practical

Unique Paper Code: 32341101

This course is designed to develop structured as well as object-oriented programming skills using C++ programming language. The course not only focuses on basic C++ constructs but also covers object-oriented programming features in-depth, namely Encapsulation, Abstraction, Inheritance and Polymorphism for writing efficient codes.

Learning Outcomes:

At the end of the course, students should be able to:

  • Explain significance of object oriented paradigm
  • Solve programming problems using object oriented features.
  • Handle external files as well as exceptions.
  • Reuse classes to create new classes.
  • Handle exceptions in programs.

Course Contents

Unit 1
Unit 2
Unit 3
Unit 4
Unit 5

Unit 1

Introduction to C++: Overview of Procedural Programming and Object-Oriented Programming, Using main () function, Header Files, Compiling and Executing Simple Programs in C++.

Unit 2

Programming Fundamentals: Data types, Variables, Operators, Expressions, Arrays, Keywords, Naming Convention, Decision making constructs (if, switch), Looping (for, while, do…while), Type Casting, Input-output statements, Functions, Command Line Arguments/Parameters.

Unit 3

Object Oriented Programming: Overview of Abstraction, Encapsulation, Inheritance, and Polymorphism. Creating Classes and objects, Modifiers and Access Control, Constructors, Implementation of Inheritance (Single and multilevel), Implementation of Polymorphism (Function Overloading and Operator Overloading, Function Overriding).

Unit 4

Pointers and References: Static and dynamic memory allocation, Pointer and Reference Variables, Pointers vs. References, Implementing Runtime polymorphism using pointers and references.

Unit 5

Exception and File Handling: Using try, catch, throw, throws and finally; Nested try, creating user defined exceptions, File I/O Basics, File Operations.

Practicals

Lab List 1

  1. Write a program to compute the sum of the first n terms of the following series:
    S = 1 – 1 / (2 ^ 2) + 1 / (3 ^ 3) – … 1 / (n ^ n)
    where ^ is exponentiation.
    The number of terms n is to be taken from user through command line. If command line argument is not found then prompt the user to enter the value of n.
  2. Write a program to remove the duplicates from an array.
  3. Write a program that prints a table indicating the number of occurrences of each alphabet in the text entered as command line arguments.
  4. Write a menu driven program to perform following operations on strings (without using inbuilt string functions):

    1. Show address of each character in string
    2. Concatenate two strings
    3. Compare two strings
    4. Calculate length of the string (use pointers)
    5. Convert all lowercase characters to uppercase
    6. Reverse the string
  5. Write a program to merge two ordered arrays to get a single ordered array.
  6. Write a program to search a given element in a set of N numbers using Binary search

    1. with recursion
    2. without recursion
  7. Write a program to calculate GCD of two numbers (i) with recursion (ii) without recursion.
  8. Create Matrix class. Write a menu-driven program to perform following Matrix operations:

    1. Sum
    2. Product
    3. Transpose
  9. Define a class Person having name as a data member. Inherit two classes Student and Employee from Person. Student has additional attributes as course, marks and year and Employee has department and salary. Write display() method in all the three classes to display the corresponding attributes. Provide the necessary methods to show runtime polymorphism.
  10. Create a class Triangle. Include overloaded functions for calculating area. Overload assignment operator and equality operator.

Lab List 2

  1. Write a program to read two numbers p and q. If q is 0 then throw an exception else display the result of p/q.
  2. Rewrite Matrix class of Q8 with exception handling. Exceptions should be thrown by the functions if matrices passed to them are incompatible and handled by main() function.
  3. Create a class Student containing fields for Roll No., Name, Class, Year and Total Marks. Write a program to store 5 objects of Student class in a file. Retrieve these records from file and display them.
  4. Copy the contents of one text file to another file, after removing all whitespaces.

Additional Information

Text Books


Forouzan & Gilbert (2012). Computer Science: A Structured Approach Using C++. Cengage Learning.
Schildt, H. (2003). C++: The Complete Reference. 4th edition. Tata McGraw-Hill.

Additional Resources


Balaguruswamy, E. (2017). Object Oriented Programming with C++ (7th ed.). McGraw Hill Education.
Kanetkar, Y. P. (2015). Let us C++ .2nd edition. BPB Publishers.
Prata, S. (2015). C++ Primer Plus 6th edition. Pearson Education India.
Stroustrup, B. (2013). The C++ Programming Language .4th Edition. Pearson Education.

Teaching Learning Process


Use of ICT tools in conjunction with traditional class room teaching methods
Interactive sessions
Class discussions

Assessment Methods

Written tests, assignments, quizzes, presentations as announced by the instructor in the class

Keywords

Procedural and Object Oriented programming, abstraction, inheritance, polymorphism, pointers, exception and file handling.

Disclaimer: Details on this page are subject to change as per University of Delhi guidelines. For latest update in this regard please refer to the University of Delhi website here.