What are constructors in oop?


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

Post New Answer

More OOPS Interview Questions

What are main features of oop?

0 Answers  


IN PROGRAMING LANGAUGE A C++ IS PURELY OBJECT ORIENTED OR NOT?

2 Answers  


How is class defined?

0 Answers  


What are the two different types of polymorphism?

0 Answers  


What is the difference between abstraction and polymorphism?

0 Answers  






what is the application of oops?

8 Answers   IBM,


diff between Abstract class Interfaces?

4 Answers  


Is enum a class?

0 Answers  


What is the expansion of OOPS?

24 Answers   TCS,


Why u change company?

12 Answers   BOB Technologies,


what is static?

4 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  


Categories