what are the uses of C++
WAP find square root of any number (without using sqrt() )?
What is polymorphism programming?
design a c++ class for the chess board,provide a c++ class definition for such class(only class definition is required)
which structured data type is not used in c++? 1.union 2.structure 3.string 4.boolean
What is abstraction?
What is the output of the following code: int v() { int m=0; return m++; } int main() { cout<<v(); } 1) 1 2) 0 3) Code cannot compile
tell about copy constructor
What is this pointer in oop?
What is data binding in oops?
What is destructor in oop?
what is runtime polymorphism? For the 5 marks.
Why do we need polymorphism in c#?