How long to learn object oriented programming?


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

Post New Answer

More OOPS Interview Questions

I have One image (means a group photo ) how to split the faces only from the image?............ please send the answer nagadurgaraju@gmail.com thanks in advace...

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 memory leak and memory corruption?

1 Answers   TCS,


how does a main() in C++ is different from main() in C?

7 Answers  


what is runtime polymorphism? For the 5 marks.

3 Answers  






What are the benefits of interface?

0 Answers  


can we create and enter the data & hide files using programmes ?

2 Answers   Wipro,


what is the difference between inter class and abstract class...?

0 Answers  


When is an object created and what is its lifetime?

4 Answers   IBM,


What is Difeerence between List obj=new ArrayList(); and ArrayList obj=new ArrayList()?

0 Answers   NIIT, SRA,


What is overriding in oop?

0 Answers  


is there any choice in opting subjects like 4 out of 7

0 Answers  


Categories