What are the benefits of interface?


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

Post New Answer

More OOPS Interview Questions

why destructor is not over loaded?

5 Answers  


What is abstract class in oops?

0 Answers  


What type of Job you are providing?

0 Answers  


namespace is working on which compiler?

3 Answers  


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 3 pillars of oop?

0 Answers  


What is a class oop?

0 Answers  


What is an object?

14 Answers   HCL,


#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 the difference between <stdio.h>and "stdio.h"?

5 Answers  


Which is better struts or spring?

0 Answers  


what is the basic concept of inheritance?

9 Answers  


Categories