What is the concept of object oriented program?

Answer Posted / kalyan

it is a concept which uses a method of using objects

Is This Answer Correct ?    4 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is abstraction in oops with example?

776


What does and I oop mean in text?

625


How long to learn object oriented programming?

565


I have One image (means a group photo ) how to split the faces only from the image?............ please send the answer nagadurgaraju@gmail.com thanks in advace...

1629


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.

6486






#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

2169


State what is encapsulation and friend function?

699


What is encapsulation in oop?

609


What does and I oop mean?

618


Write a program to sort the number with different sorts in one program ??

1921


Can a varargs method be overloaded?

617


Why is oop useful?

602


Why oops is important?

614


What is the significance of classes in oop?

590


What is difference between data abstraction and encapsulation?

618