Answer Posted / bijaya kumar jena
Class is a user defined data type. It is the collection of
data member and member function.
Ex:-
Class Add
{
private:
int n1,n2; //Data member
public:
res() //Member Function
{
cout<<"Result :";
}
}
}
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Are polymorphisms mutations?
Why do we need polymorphism in c#?
What is new keyword in oops?
Where is pseudocode used?
What is difference between data abstraction and encapsulation?
Can we create object of interface?
What is overriding vs overloading?
Describe these concepts: Polymorphism, Inheritance and Abstraction.
What is the types of inheritance?
What is the point of oop?
Can an interface inherit a class?
What is abstraction and encapsulation?
Can a destructor be called directly?
What is byval and byref? What are differences between them?
What is abstraction in oops?