what is oops

Answer Posted / thirupathi raju

O:object
O:oriented
P:programing
S:structure

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are benefits of oop?

625


Will I be able to get a picture in D drive to the c++ program? If so, help me out?

1644


What is meant by multiple inheritance?

728


#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

2156


What is overriding vs overloading?

573






What are classes oop?

589


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

1569


What is the purpose of enum?

573


How do you achieve runtime polymorphism?

561


What is encapsulation example?

541


What are the benefits of oop?

597


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

1570


What is inheritance in oop?

591


How is class defined?

571


What does it mean when someone says I oop?

572