Definition of Object Oriented Programming in single line?

Answer Posted / deepanjali joshi

oops is real world entity,in which data and function are
hidden from outside the world only object of the class can
access the dat and function of class

Is This Answer Correct ?    27 Yes 14 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is advantage of inheritance?

692


#include #include #include #include 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

2070


What is destructor oops?

625


write a program to find 2 power of a 5digit number with out using big int and exponent ?

1897


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

1612






What is the purpose of polymorphism?

683


What is an interface in oop?

595


What are the components of marker interface?

602


Why can't we have instance(stack) of a class as a member of the same class like eg.Class A{A obj;} as we can have self refential pointer

1623


officer say me - i am offered to a smoking , then what can you say

1585


What is interface in oop?

664


hi, this is raju,iam studying b.tech 2nd year,iam want know about group1 and group2 details, and we can studying without going to any instutions? please help me.

1543


What are classes oop?

598


Why is there no multiple inheritance?

571


what is the drawback of classical methods in oops?

2920