What is oops and why we use oops?


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

Post New Answer

More OOPS Interview Questions

Describe what an Interface is and how it?s different from a Class.

7 Answers   Spinsys,


How to create a comment page in C #??

2 Answers  


What is oops concept with example?

0 Answers  


Is html an oop?

0 Answers  


Write a java applet that computes and displays the squares of values between 25 and 1 inclusive and displays them in a TextArea box

0 Answers  






What are the benefits of oop?

0 Answers  


how to create thread in java?

17 Answers   IBM, Infosys, Wipro,


what is the difference between javap and jad utility

1 Answers   Wipro,


How do you explain polymorphism?

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  


Definition of Object Oriented Programming in single line?

33 Answers   Impact Systems, Q3 Technologies, TCS,


Why is object oriented programming so hard?

0 Answers  


Categories