CSC166 Object Oriented Programming
Object Oriented Programming: most repeated questions
Questions that have come up in more than one paper, matched by what they ask rather than exact wording. Most repeated first.
- 6×Asked in 2082, 2081, 2080, 2079, 2076, 2075List and describe the characteristics of object oriented programming.Answer coming5
See the wording in each paper
- List and describe the characteristics of object oriented programming.TU Board 2082
- Describe the characteristics of object oriented programming approach.TU Board 2081
- Define object. What are the benefits of Object Oriented Programming Language?TU Board 2080 (new course)
- Describe the characteristics of object oriented programming languageTU Board 2079
- How object oriented programming differs from object based programming language? Discuss benefits of OOP.TU Board 2076
- Briefly explain types of inheritance used in object oriented Programming.TU Board 2075
- 2×Asked in 2080Create a class named Point with data members x(int) and y(int). Add operator overloading to find the Euclidean distance between two points.Answer coming5
See the wording in each paper
- Create a class named Point with data members x(int) and y(int). Add operator overloading to find the Euclidean distance between two points.TU Board 2080
- Write a program to create a class named height with data members meter(int) and centimeter(int). Overload the binary + operator using friend function to add two heights.TU Board 2080 (new course)
- 2×Asked in 2082, 2078Explain copy constructor with an example.Answer coming5
See the wording in each paper
- 2×Asked in 2080, 2079What is destructor? List its characteristics. Explain the use of default copy constructor with an appropriate example.Answer coming10
See the wording in each paper
- What is destructor? List its characteristics. Explain the use of default copy constructor with an appropriate example.TU Board 2080 (new course)
- What is the use of constructor and destructor? Write a program for illustrating default constructor, parameterized constructor and copy constructor.TU Board 2079
- 2×Asked in 2078, 2076Write a program according to the specification given below: – Create a class Account with data members acc no, balance, and min balance(static) Include methods for reading and displaying values of objects – Define static member function to display min…Answer coming10
See the wording in each paper
- Write a program according to the specification given below: – Create a class Account with data members acc no, balance, and min balance(static) Include methods for reading and displaying values of…TU Board 2078
- Write a program according to the specification given below: – Create a class Account with data members acc no, balance, and min balance(static) Include methods for reading and displaying values of…TU Board 2076