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 |
what is polymorphism?
What is this interview room ? Is it a class or an object.
INSTANCE FIELDS DECLARED private ARE ACCESSIBLE BY THE METHODS ONLY.CAN WE CHANGE THE private FIELD OF AN OBJECT IN A METHOD OF SOME OTHER OBJECT OF THE SAME CLASS?
how do you handle yourself when you feel the wald is aganist you
Can we define a class within the interface?
what is new modifier in C#
What is difference between pop and oop?
What is polymorphism ? Explain with examples
What is constructor overloading in oop?
What do you mean by multiple inheritance and multilevel inheritance? Differentiate between them.
Give two or more real cenario of virtual function and vertual object
Is oop better than procedural?