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

Answer Posted / amit chauhan

object is a real world entity.
class is collection of similar objects.

Is This Answer Correct ?    2 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

#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

2157


How to call a non virtual function in the derived class by using base class pointer

5243


What is a null tree?

619


Plese get me a perfect C++ program for railway/airway reservation with all details.

3419


which feature are not hold visual basic of oop?

1717






What are the 4 pillars of oop?

660


What are the benefits of polymorphism?

612


What are constructors in oop?

583


Is this job good for future? can do this job post grduate student?

1685


How to hide the base class functionality in Inheritance?

630


What is difference between abstraction and encapsulation?

584


What is polymorphism oop?

610


What is object in oops?

606


What is the full form of oops?

603


What is overriding in oop?

541