who is the father of OPPS

Answer Posted / seema

bjarne stroustrup

Is This Answer Correct ?    17 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain the concepts involved in Object Oriented programming.

629


What is encapsulation in ict?

605


What is polymorphism give a real life example?

557


#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

2064


What is polymorphism used for?

566






c++ program to swap the objects of two different classes

1761


What is object in oop with example?

697


What are the benefits of polymorphism?

619


Write a program to reverse a string using recursive function?

1788


Where is pseudocode used?

563


Can we define a class within the interface?

551


What is destructor in oop?

621


What are the two different types of polymorphism?

669


Why do while loop is used?

572


What does <> mean pseudocode?

620