What is the difference between an object and a class?

Answer Posted / ven

An Object is an instance of the class

Is This Answer Correct ?    11 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is multilevel inheritance?

978


Is react oop?

839


What are classes oop?

812


why reinterpret cast is considered dangerous?

2136


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

2395


What do you mean by variable?

793


What are main features of oop?

885


What is object in oop with example?

985


What is basic concept of oop?

922


Write a java applet that computes and displays the squares of values between 25 and 1 inclusive and displays them in a TextArea box

2304


Why is there no multiple inheritance?

793


Can a varargs method be overloaded?

839


What is polymorphism give a real life example?

785


what are the different types of qualifier in java?

2045


What is this pointer in oop?

824