what is oops

Answer Posted / lucky varshney

Object Oriented Programming System

Is This Answer Correct ?    6 Yes 10 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is interface in oop?

866


What does and I oop and sksksk mean?

850


What is polymorphism oop?

809


What is abstraction in oop?

836


What is this pointer in oop?

776


What is the significance of classes in oop?

787


What is encapsulation and abstraction? How are they implemented in C++?

834


Why do we need oop?

863


Can you explain polymorphism?

804


Why is encapsulation used?

754


#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

2355


assume the program must insert 4 elements from the key board and then do the following programs.sequential search(search one of the elements),using insertion sort(sort the element) and using selection sort(sort the element).

1880


Give two or more real cenario of virtual function and vertual object

2057


They started with the brief introduction followed by few basic C++ questions on polumorphism, inheritance and then virtual functions. What is polymorphims? How you will access polymorphic functions in C? How virtual function mechanism works?

1606


What is purpose of inheritance?

835