what is an instance of a class

Answer Posted / siva

The instance of the class is known as object.

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Whats is abstraction in oops?

589


i got a backdoor offer in process global,Bangalore..Can i work with it?

2324


What is class encapsulation?

586


What is encapsulation in oops?

534


Why polymorphism is used in oops?

581






#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

2162


Is data hiding and abstraction same?

567


What is the main purpose of inheritance law?

667


What is debug class?what is trace class? What differences are between them? With examples.

1604


What is encapsulation in oop?

601


What does oop mean in snapchat?

680


What is difference between class and object with example?

562


Explain virtual inheritance?

680


What exactly is polymorphism?

600


What is destructor in oop?

621