Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


what is the difference between class and object?

Answers were Sorted based on User's Feedback



what is the difference between class and object?..

Answer / jayasrinivas.donavalli

class:class is an abstract data type in which both Member
functions and member variable are declared that means
aclass is userdefined data type in which we will be able to
declare both methods and variable.
object : Object is an Instance of the class.The class is a
valid one when object is created.
For one class we will have more number of Objects.
declaration of class in
class classname
{
public:
Member variables;
Member functions();
protected:
Member variables;
Member functions();
Private:
Member variables;
Member functions();
};
Declaration of Objects:
class classname allaisname;
here allias name is nothing but objectname.
if we want to get the data from that particular we have to
use objects.
objectname.functionname();

Is This Answer Correct ?    26 Yes 4 No

what is the difference between class and object?..

Answer / s.jagadeeswari

Class is just a template. It does not allocate memory
space. When instantiate the object, allocates the memory
space

Is This Answer Correct ?    22 Yes 6 No

what is the difference between class and object?..

Answer / walking legend

I would like to explain the concept of class and object
with an example for easy understanding
consider a person 'x' has designed a car drawing the
model on a paper on computer using a software
class:this blue print is called class.
object:if a car is manufactured based on the blue print
it is one of the object created for that
particular class.

Is This Answer Correct ?    15 Yes 7 No

what is the difference between class and object?..

Answer / meganathan

Class is container of data.

Object is run time entity.

Is This Answer Correct ?    8 Yes 1 No

what is the difference between class and object?..

Answer / rahul

Class : class ia a blueprint or prototype from which object
are created
Object: Object is a Software bundles of related state and
behavior.

Is This Answer Correct ?    14 Yes 9 No

what is the difference between class and object?..

Answer / rashid

Class is nothing but it is the collection of data member and
variable while object is an instance of a class.

Is This Answer Correct ?    5 Yes 1 No

what is the difference between class and object?..

Answer / p.madhupriya

object is real world entity.
class is a collection of objects and member function .

Is This Answer Correct ?    8 Yes 5 No

what is the difference between class and object?..

Answer / tejapotnuru

class is designing of a house
constructed house is called object

Is This Answer Correct ?    6 Yes 5 No

what is the difference between class and object?..

Answer / sanjith

Actually,
*Class is a collection of general declarations for data members and member functions ,that means it doesnot hold any memory.

*when we give certain values to a class ,objects are created.
that means a memory is allocated when objects are created.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More OOPS Interview Questions

What is class and example?

0 Answers  


What is object and example?

0 Answers  


what is difference between String s=new String("vali"); String s="vali"

1 Answers  


What is the use of oops?

0 Answers  


What is Inheritance, Multiple Inheritance, Shared and Repeatable Inheritance?

4 Answers   Accenture, L&T,


What does and I oop mean?

0 Answers  


write a code for this. serial_number contained in the header of the file will be read , if this serial number is less than a previous serial number within a successfully processed file, or is the same as another serial number within a successfully processed file, or if the field contains anything other than 7 digits, then the file must error with the reason ‘Invalid SERIAL_NUMBER’.

0 Answers   Microsoft, TCS,


Can a varargs method be overloaded?

0 Answers  


c++ is a purely oop concept?

3 Answers   Google, TCS,


which are the 4 members functions in c++ objects that can either be declared explicitly by programmer or implementation if nt available.

4 Answers  


What is abstraction in oop?

0 Answers  


Can anyone please explain runtime polymorphism with a real time example??at what ciscumstances we go for it??

1 Answers  


Categories