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 many system controls are available ?

1 Answers  


What is the use of Hyperlink control for DHTML applications?

0 Answers  


What is the need of z-order method?

1 Answers  


which collection in recordset used to assign a value from textbox to table columns without making abinding in datacontrol?

1 Answers  


How many ways we can access file using VB?

0 Answers  






How would you create properties by using class Builder Wizard?

0 Answers  


1s it posible to Create Tables Through Querydef?

0 Answers  


How would you convert a form into document?

0 Answers  


What are the different types of errors in visual Basic?

8 Answers   ABC,


How to register a component?

1 Answers  


Discuss the working with to-do lists.

0 Answers  


How would you attach pictures in Treeview Control?

1 Answers   HCL,


Categories