WHAT IS THE ACTUAL DEFINATION OF OBJECT AND THE CLASS IN ONE
SINGLE LINE WHICH THE INTERVIEWER WANT TO LISTEN.

Answer Posted / kunal prakash

object is the instance of the class.
class contains data and member functions.

Is This Answer Correct ?    12 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the components of marker interface?

794


What is inheritance in oop?

791


Why is object oriented programming so hard?

812


How is polymorphism achieved?

763


What is abstraction oop?

815


Why is oop better than procedural?

798


What is the full form of oops?

904


Why is abstraction used?

830


What is the highest level of cohesion?

762


What is property in oops?

777


#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

2359


Is html an oop?

767


Why multiple inheritance is not possible?

784


what are the ways in which a constructors can be called?

1785


Is data hiding and abstraction same?

758