what is Class in oops with example?
Answers were Sorted based on User's Feedback
Answer / sudhavasugj@gmail.com
Object is the variable of class in oops. Class is created
for do some behavior in program. The behavior is accessed by
creating the object for the particular class in main program.
Ex: computer c++;
computer - class
c++ - object
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / venkatesh
Class is a user defined datatype, and it is a logical representation of data(means which does not occupy any space)
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / elakiya.p
a class is a collection of similar object type.
for eg:
fruit mango;
->fruit is a user defined data type.
->mango is a object.
->fruit is also we called class.
->it behave like built-in types of programming language.
| Is This Answer Correct ? | 3 Yes | 0 No |
Which is the only operator in C++ which can be overloaded but NOT inherited?
Program to open a file with First argument
What are the important components of cohesion?
Why do while loop is used?
can inline function declare in private part of class?
write a program to print * * * * * *
What do you mean by overloading?
What is the difference between Home and $Home?
what is single inheritance?
What is differance between Abstract and Interface
what is function over loading?
Why is abstraction needed?