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 an object and a class?

Answers were Sorted based on User's Feedback



What is the difference between an object and a class?..

Answer / ven

An Object is an instance of the class

Is This Answer Correct ?    11 Yes 0 No

What is the difference between an object and a class?..

Answer / manas

a class is a datatype that abstratcs data and implementations
while an object is an instance of the class which wraps up data. An object has identity, state and behavior

Is This Answer Correct ?    2 Yes 0 No

What is the difference between an object and a class?..

Answer / nk

Object is a runtime entity of a class

Is This Answer Correct ?    3 Yes 3 No

Post New Answer

More OOPS Interview Questions

What is inheritance in simple words?

0 Answers  


WHAT IS ABSTRUCT DATA TYPE ? PLEASE EXPLAIN IT.

4 Answers   HCL,


143.what is oops principles?

10 Answers  


what are abstract classes and how they impliment , with example

2 Answers  


What are the advantages of inheritance?

26 Answers   IBS, TCS,


What is encapsulation process?

0 Answers  


Why static Function is used in C++?

4 Answers   TCS,


#include <string.h> #include <stdio.h> #include <stdlib.h> #include <conio.h> void select(char *items, int count); int main(void) { char s[255]; printf("Enter a string:"); gets(s); select(s, strlen(s)); printf("The sorted string is: %s.\n", s); getch(); return 0; } void select(char *items, int count) { register int a, b, c; int exchange; char t; for(a = 0; a < count-1; ++a) { exchange = 0; c = a; t = items[ a ]; for(b = a + 1; b < count; ++b) { if(items[ b ] < t) { c = b; t = items[ b ]; exchange = 1; } } if(exchange) { items[ c ] = items[ a ]; items[ a ] = t; } } } design an algorithm for Selection Sort

0 Answers  


Write an operator overloading program to write S3+=S2.

2 Answers  


Definition of Object Oriented Programming in single line?

33 Answers   Impact Systems, Q3 Technologies, TCS,


What is destructor oops?

0 Answers  


Why do we need polymorphism in c#?

0 Answers  


Categories