Definition of class?

Answers were Sorted based on User's Feedback



Definition of class? ..

Answer / aarthi

class is defined as the collection of attributes and
behavior

Is This Answer Correct ?    6 Yes 0 No

Definition of class? ..

Answer / chithra

A Claas is a group of objects that share some common
properties and relationships.

Is This Answer Correct ?    6 Yes 2 No

Definition of class? ..

Answer / vadivel

A Class is a blueprint of object.

or

class are units of code and data, which can be used as
block boxs(called object).

Object:- Instance of class is called object.

Is This Answer Correct ?    4 Yes 0 No

Definition of class? ..

Answer / priya

class is the bind of functions and data together

Is This Answer Correct ?    4 Yes 2 No

Definition of class? ..

Answer / priya

class is defined as the binding of functions and datas
together

Is This Answer Correct ?    4 Yes 2 No

Definition of class? ..

Answer / priya

class is the way to bind the functions and data together

Is This Answer Correct ?    5 Yes 3 No

Definition of class? ..

Answer / prabakaran

binding datas and functions together

Is This Answer Correct ?    3 Yes 1 No

Definition of class? ..

Answer / adnan sheikh

A class is the collection of related function and data
together and object is the instance of the class

Is This Answer Correct ?    2 Yes 0 No

Definition of class? ..

Answer / sanjaya mohapatra

CLASS IS A USER DEFINE DATA TYPE.IT IS THE WAY OF BINDING
DATA AND ITS ASSOCIATIVE FUNCTIONS.IT ALLOWS TO HIDING THE
FUNCTION IF NECESSARY FOR EXTERNAL USE.WHEN A CLASS IS
CREATED A OBJECT WILL CREATED.

Is This Answer Correct ?    2 Yes 1 No

Definition of class? ..

Answer / manju

class is a collection of data members and member functions

Is This Answer Correct ?    2 Yes 1 No

Post New Answer

More C++ General Interview Questions

Which programming language is best?

0 Answers  


In int main(int argc, char *argv[]) what is argv[0] a) The first argument passed into the program b) The program name c) You can't define main like that

0 Answers  


Can we delete this pointer in c++?

0 Answers  


What are the advantages of c++?

0 Answers  


How do I write a c++ program?

0 Answers  






Where and why do I have to put the "template" and "typename" keywords?

0 Answers  


how to connect with oracle 9i with server in socket program in c/c++

0 Answers   3i Infotech,


What is private public protected in c++?

0 Answers  


sizeof - is it a function or operator?

6 Answers   Honeywell,


Differentiate between an external iterator and an internal iterator? What is the advantage of an external iterator.

0 Answers  


given unsigned int ui1=3,ui2=7; what are the outputs of a)ui1 & ui2 b)ui1 && ui2 c)ui1 | ui2 d)ui1 || ui2 i also need the justification for the answers thank you

2 Answers  


You have two pairs: new() and delete() and another pair : alloc() and free(). Explain differences between eg. New() and malloc()

0 Answers  


Categories