renu
Answered On : Jun 28th, 2005
class is a user defined data type,in which data members and member functions are defined.

1 User has rated as useful.
Login to rate this answer.
hirma
Answered On : Sep 18th, 2005
class is a userdefined datatype which consists of attributes(datamembers) and behavior(member functions).Bydefault the members of a class is private.

5 Users have rated as useful.
Login to rate this answer.
swapna
Answered On : Oct 11th, 2005
Class is combination of member variables and member functions
Login to rate this answer.
Kusuma
Answered On : Dec 16th, 2005
Class is a User Defined Data Type....it encapsulate both data and functions.Real time Example: Car is a class....under which we have different types, which is called a object interms of OOP.Software Ex: if i declare variable , say int a; .....here " int " is CLASS. and " a " is obeject of int class.
Login to rate this answer.
dunnnnno
Answered On : May 21st, 2006
class is such a bhosdaap which i can never understand whatz the need of this new feature instead of allowing a structure some more functionality.
Login to rate this answer.
Class is a data structure which is used to store variables and functions together. For example House is a class which consists of several components like the Bathroom,Dining hall,kitchen and etc

1 User has rated as useful.
Login to rate this answer.
jaya
Answered On : Apr 30th, 2007
A class is a user defined data type. A class is a collection of objects of similar type
Ex: Consider Bird class. Parrot, Sparrow, Peacock are the members of Bird class.
Login to rate this answer.
A class is a user-defined data type that encapsulates data and methods that can act upon the data together.
A class can also be defined as a classification/category of objects that have similar attributes and behaviour. For example, Automobile is a category of objects that have similar attributes, such as wheels, engine, doors, shape, color, cylinders etc., and behaviours, such as start, run, move, turn etc. Car is an instance of automobile which has different values for the attributes (4 wheels, one engine, 2 or 4 doors, 4/6/8 cylinders, etc), whereas, a semi-truck is another instance of automobile that has different values for the same attributes (18 wheels, one engine, two doors and so forth).

2 Users have rated as useful.
Login to rate this answer.
narendrasappati
Answered On : Aug 8th, 2007
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.
Login to rate this answer.
Class is a data type .Class is a blue print of objects. Class gives an opportunity to define his on class according to his problem rather than using existing data type like float, char e.t.c.
Login to rate this answer.
CLASS Specifies the criteria to handle the instance of the problem.The entire set of data and methods associated with the problem can be bound together and implemented as type with the help of class.
Login to rate this answer.
Class is an encapsulation of data members and data function which manipulates the data.
Login to rate this answer.
A class is an expanded concept of a structure. Instead of holding data it can hold both data and functions.
Login to rate this answer.
In C, we can use only inbuilt data types for program needs but from C++ we can create userdefined datatypes in form of classes. Classes wrap datamembers and member functions that operate on datamembers together.
Login to rate this answer.
A class is a set of objects that share a common structure and a common behavior, a single object is simply an instance of a class.
Login to rate this answer.