why we are declare the function in the abstract class even
though we are declaring it in Derived class?
Answer / vishal
Abstract class is nothing but placeholder for other classes
ie subclass.It defines common shared behavior in abstract
classes and if we need to override we need to define in its
subclass else we can use shared behavior in base class.
| Is This Answer Correct ? | 1 Yes | 0 No |
What do you mean by stack program? Get me an example stack program?
What is the benefit of oop?
can we make game by using c
Write a program to multiply 3x3 matrics
c++ is a purely oop concept?
define oops with class and object
Why a "operator=(...)" when there is a copy ctor?
What is Object and Class? What are the differences between them?
What are objects in oop?
How Do you Code Composition and Aggregation in C++ ?
what is SPL in c++.
1. Wrie a function which returns the most frequent number in a list of integers. Handle the case of more than one number which meets this criterion. public static int[] GetFrequency(int[] list)