| |
GeekInterview.com > Interview Questions > Programming > C++
| Print | |
| Question: What is a class?
Answer: Class is a user-defined data type in C++. It can be created to solve a particular kind of problem. After creation the user need not know the specifics of the working of a class. |
| August 08, 2007 02:23:43 |
#9 |
| narendrasappati |
Member Since: Visitor Total Comments: N/A |
RE: What is a class? |
| A class is a User Defined Datatype which acts as a Model. Means we can create objects with that Class(model). Its a collection of datamembers and Memberfunction. |
| |
Back To Question | |