What is a class?
Answers were Sorted based on User's Feedback
Answer / deepak saini
class is the collection of data and functions(methods)
which are used to collect that data.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / pushpanjali panda
class is a user defined entity which has some real world
existence,and it is a way to bind the data and its
associated functions of different datatypes
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / abalonesoft
A class defines a data type, much like a struct would be in
C. In a computer science sense, a type consists of both a
set of states and a set of operations which transition
between those states. Thus int is a type because it has both
a set of states and it has operations like i + j or i++,
etc. In exactly the same way, a class provides a set of
(usually public) operations, and a set of (usually
non-public) data bits representing the abstract values that
instances of the type can have.
You can imagine that int is a class that has member
functions called operator++, etc. (int isn't really a class,
but the basic analogy is this: a class is a type, much like
int is a type.)
Note: a C programmer can think of a class as a C struct
whose members default to private. But if that's all you
think of a class, then you probably need to experience a
personal paradigm shift.
| Is This Answer Correct ? | 0 Yes | 0 No |
Write a program or provide a pseudo code to flip the 2nd bit of the 32 bit number ! (Phone Screen)
What are the data types present in c?
write an algorithm to display a square matrix.
What is a loop?
How many data structures are there in c?
What are bitwise shift operators in c programming?
Why should I use standard library functions instead of writing my own?
Suggesting that there can be 62 seconds in a minute?
Explain can static variables be declared in a header file?
Convert the following expression to postfix and prefix (A+B) * (D-C)
write a program to find the sum of the array elements in c language?
24 Answers ICT, Infosys, Wipro,
How does the C program handle segmentation faults?