Definition of Object Oriented Programming in single line?

Answer Posted / brijesh

OOPs is the Programming language in which we intrect with
the object world.And we define our logic inside a class and
take it by object.

Is This Answer Correct ?    13 Yes 6 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

just right the logic of it 1--> If few people are electing then every time ur candidate should win 2--> arrange books in box, if box carry weight == books weight then take another box..... find the no of box required.

6487


What is object and example?

604


Why is abstraction used?

612


What language is oop?

597


Why do we use inheritance?

630






Can bst contain duplicates?

670


any one please tell me the purpose of operator overloading

1967


What is destructor example?

598


What is for loop and its syntax?

598


Can you name some types of inheritance?

641


What is the difference between inheritance and polymorphism?

594


What is abstract class in oops?

600


Do you know about multiple inheritance?

642


#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 encapsulation selenium?

554