What is a class?
Answers were Sorted based on User's Feedback
Answer / kumar vishal
In general a class is a group of objects. for example
mango,apple, banana, grapes etc. is a group of fruits.
But in oops concept, a class is a collection of member data
and member function.
| Is This Answer Correct ? | 22 Yes | 1 No |
Answer / madasamy.k
Collection of data members(Varibles) and methods(functions)
is called class
| Is This Answer Correct ? | 10 Yes | 1 No |
Answer / khadeer.k
a class is a collection of objects which contains variables
and functions...
| Is This Answer Correct ? | 9 Yes | 1 No |
Answer / anandan
the wrapping up of data and functions into a single unit is
defined as the class
| Is This Answer Correct ? | 9 Yes | 5 No |
Answer / ganesh
Class is an user defined datatype where variable and
related code where incorporated
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / preethi
In object-oriented programming , a class is a template
definition of the method s and variable s in a particular
kind of object . Thus, an object is a specific instance of
a classClass is the Collection of Methods and Datafield, in
other
word we can say class is user defined Data Types
; it contains real values instead of variables
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / kiran kumar.b
a class is a logical existence of a data containing data
variables and member functions having relations between
them.
| Is This Answer Correct ? | 3 Yes | 2 No |
Answer / k.premalatha
class is a generalisation or mould or template of an object.
| Is This Answer Correct ? | 2 Yes | 1 No |
When a private constructer is being inherited from one class to another class and when the object is instantiated is the space reserved for this private variable in the memory??
Can static class have constructor?
State what is encapsulation and friend function?
Why we are use # in begning of programme of c++.
What is abstract class in oop?
What is overloading and its types?
What is destructor example?
What is abstraction encapsulation?
what is SPL in c++.
How oops is better than procedural?
what is the difference between class to class type conversion and copy constructor ?
difference between static and non-static variables?