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 |
i want to job in your company, so how it will be possible.
What is the memory allocated by the following definition ? int (*x)[10];
what is the output of the program?? #include<stdio.h> main ( ) { int a=010,sum=0,tracker: for(tracker=0;tracker<=a;tracker++) sum+=tracker; printf(ā %d\nā,sum); } what is the difference between a=10 and a=010??
. A database table called PERSON contains the fields NAME, BASIC and HRA. Write a computer program to print a report which employee name and total salary for those employees whose total salary is more than 10,000. Total Salary = BASIC + HRA. At the end, the program should also print the total number of employees whose total salary is more than 10,000.
How many loops are there in c?
how to swap four numbers without using fifth variable?
Why c++ is called c++ and not c+?
can we write a program in c for printf and scanf without using header file stdio.h
if the address of a[1,1] and a[2,1] are 1000 and 1010 respectively and each occupies 2 bytes then the array has been stored in what order?
4 Answers Amazon, Apple, Bata, Google, NASA,
What happens if a header file is included twice?
what is array?
What the different types of arrays in c?