What are the benefits of oop?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More OOPS Interview Questions

what is oppes

2 Answers  


What is virtual Function.

1 Answers   Wipro,


What is operator overloading? Give Example

11 Answers   CTS, IBM, TCS,


What is difference between class and object with example?

0 Answers  


#include <string.h> #include <stdio.h> #include <stdlib.h> #include<conio.h> 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

0 Answers  






What is function overloading and operator overloading?

4 Answers  


How Do you Code Composition and Aggregation in C++ ?

3 Answers   IBM, NET,


what is a binary overloading

2 Answers  


char* ptr = "Rahul"; *ptr++; printf("%s",ptr); What will be the output

9 Answers   Persistent,


design class for linked list and include constructor,destructor,insert option. node of form struct node { int data; struct node &ptr; }

0 Answers  


What are the valid types of data that the main () can return in C/C++ language

3 Answers  


what are the disadvantages of C++?

25 Answers   ATS, Infosys, UNI, Wipro,


Categories