Tribhuvan University

Institute of Science and Technology

2079

Bachelor Level / second-semester / Science

Computer Science and Information Technology( CSC166 )

Object-Oriented Programming

Full Marks: 60 + 20 + 20

Pass Marks: 24 + 8 + 8

Time: 3 Hours

Candidates are required to give their answers in their own words as far as practicable.

The figures in the margin indicate full marks.

Group A

Attempt any TWO questions (2 x 10 = 20)

1

What is aggregation? Write a program for implementing following:

Create a class author with attributes name and qualification. Also create a class publication with pname. From these classes derive a classes derive a class book having attributes title and price. Each of the three classes should have getdata() method to get their data from user. The classes should have putdata() method to display the data. Create instance of the class book in main.

2

What is operator overloading? Why it is necessary to overload an operator? Write a program for overloading comparision operator.

3

What is the use of constructor and destructor? Write a program for illustrating default constructor, parameterized constructor and copy constructor.

Group B

Attempt any EIGHT questions (2 x 10 = 20)

4

Describe the characteristics of object oriented programming language

5

Define class and object with suitable example. How members of class can be accessed?

6

What is inline function? Why it is used? Write a program to illustrate inline function.

7

What are the various class access specifiers? How public inheritance differs from private inheritance?

8

Write a program to implement function template with multiple arguments.

9

Write a program to illustrate the use of seekg() and tellg().

10

How dynamic memory allocation is done using new and delete? Write a program for illustrating use of new and delete.

11

Write short notes on:

  1. Friend Function
  2. Early binding and late binding