1. Define a class.
Answers were Sorted based on User's Feedback
Answer / mayank kumar
class is a user defined data type and it is the collection
of element. it contains two things
data member and member function.
| Is This Answer Correct ? | 14 Yes | 0 No |
Answer / nature
class is a user defined data type and it is the collection
of element
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / 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 |
Conversion from a basic type to a class type may be achieved using______________
Describe these concepts: Polymorphism, Inheritance and Abstraction.
what is the need of abstraction? what is abstraction?what is the abstraction for stack?
what do you mean by static member variable?
What's the full form of STL?
What is protected in oop?
What is the renewal class?
What is a superclass in oop?
what is the difference between class to class type conversion and copy constructor ?
What is memory leak and memory corruption?
State what is encapsulation and friend function?
what is overloading