what are the Differences Object and Class?

Answers were Sorted based on User's Feedback



what are the Differences Object and Class?..

Answer / guest

Classes and objects are separate but related concepts.
Every object belongs to a class and every class contains
one or more related objects.1)A Class is static. All of the
attributes of a class are fixed before,during, and after
the execution of a program.
The attributes of a class don't change.The class to which
an object belongs is also (usually) static. If a particular
object belongs to a certain class at the time that it is
created then it almost certainly will still belong to that
class right up until the time that it is destroyed.
2)An Object on the other hand has a limited lifespan.
Objects are created and eventually destroyed. Also during
that lifetime, the attributes of the object may undergo
significant change.So basically the difference between a
class and an object is that a class is a general
concept while objects are the specific and real instances
that embody that concept. When creating an object oriented
program we define the classes and the relationships between
the classes . We then execute the program to create,
update, and destroy the objects which are the specific
realization of these classes.

Is This Answer Correct ?    2 Yes 0 No

what are the Differences Object and Class?..

Answer / hema

A class is a template . An object is an instance of a class.

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More Visual Basic Interview Questions

How can you save and Get data from Clipboard?

1 Answers  


___,___ arguments will be used to run a executable program in shell function

0 Answers  


What are the differences between a standard module and a class module?

4 Answers  


what are the Default cursor Type and LockEdit type in DAO?

0 Answers  


Does VB Supports OOPS Concepts? Explain..

4 Answers  


How can you check whether a record is valid record or Invalid record using ADO control or Object?

0 Answers  


What are the different procedures associated with the object?

0 Answers  


State about the different types of visual basic data?

0 Answers  


What is ODBC Direct and Microsoft Jet Database Engine ?

0 Answers  


___ property is used to change to ___ value to access a identity column'in datacontrols.

0 Answers  


What is the use of Immediate, Local Window?

0 Answers  


Explain the "cursortype" and "Locktype" in VB?

1 Answers  


Categories