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

what is the diff b/n c and c++ a. dynamic scoping b. nested switching c. declaration of variables in any code block d. separation of compilation and linking

2 Answers   Hughes,


Consider the following code fragment: int main(void) { int m = 4; mystery ( m ); mystery ( m ); printf("%d", m); return 0; } What is the output on the monitor if mystery is defined as follows ? void mystery (int m) { m = m+3; }

2 Answers   CDAC, Wipro,


What is static function? Explain with an example

0 Answers  


Can recursive program be written in C++?

0 Answers  


How do you master coding?

0 Answers  


What c++ is used for?

0 Answers  


Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create

0 Answers  


What is this weird colon-member (" : ") syntax in the constructor?

0 Answers  


Differentiate between structure and class in c++.

0 Answers  


What is #include ctype h in c++?

0 Answers  


diff between pointer and reference in c++?

1 Answers  


How do you print a string on the printer?

0 Answers  


Categories