Definition of class?
Answers were Sorted based on User's Feedback
Answer / aarthi
class is defined as the collection of attributes and
behavior
| Is This Answer Correct ? | 6 Yes | 0 No |
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 |
Answer / priya
class is the way to bind the functions and data together
| Is This Answer Correct ? | 5 Yes | 3 No |
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 |
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 |
Answer / manju
class is a collection of data members and member functions
| Is This Answer Correct ? | 2 Yes | 1 No |
How do you sort a sort function in c++ to sort in descending order?
What is the difference between an enumeration and a set of pre-processor # defines?
write a program in c++ to implement stack using functions in header file stack.h
What does the following code do: int c=0; cout< a) Undefined *Updated* b) 01 c) 00
What is functions syntax in c++?
Explain the operation of overloading of an assignment operator.
How does c++ structure differ from c++ class?
Differentiate between structure and class in c++.
What are the two types of comments?
Carry out conversion of one object of user-defined type to another?
What is an Iterator class?
Write a program in c++ to print the numbers from n to n2 except 5 and its multiples