what is oops

Answers were Sorted based on User's Feedback



what is oops..

Answer / lilly

Oops is a object oriented programming language. The whole
program structure is depended on the real world entity
called object. It has many features like inheritance,
polymorphism, data binding, abstraction , encapsulation
etc. It is very convinient to write programs in oops
compared to non-oops. whole program is oriented by the
object. There is nothing to do with the program without
object in object oriented programming. As the objects plays
main role and controls overall program, Hence the name
oops.

Is This Answer Correct ?    27 Yes 3 No

what is oops..

Answer / bujji

object oriented programming structure

Is This Answer Correct ?    15 Yes 7 No

what is oops..

Answer / revathi

oops is a object oriented programming language.
the main aim is to creating an object to the entire program
and that to we can control the entire program using the object
the main feature of oops is polymorphism,multiple
inheritance,abstraction and encapsulation

Is This Answer Correct ?    2 Yes 0 No

what is oops..

Answer / thirupathi raju

O:object
O:oriented
P:programing
S:structure

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More OOPS Interview Questions

Write A Program to find the ambiguities in Multiple Inheritance? How are they resolved.(Virtual Functions)

0 Answers   Accenture,


The expansion of GNU

3 Answers  


explain the concepts of oops?

1 Answers  


In which cases you use override and new base?

2 Answers  


How is data security provided in Object Oriented languages? ?

5 Answers  






What is oops with example?

0 Answers  


Input: enter the value:1234 output: 1 2 3 4 write a program to get above output.....

4 Answers   Bally Technologies, IBM, SoftSol,


what type of question are asked in thoughtworks pair programming round ?

0 Answers   Thought Works,


What are functions in oop?

0 Answers  


• What are the desirable attributes for memory managment?

0 Answers  


What is the correct syntax for inheritance? 1) class aclass : public superclass 2) class aclass inherit superclass 3) class aclass <-superclass

6 Answers   Wipro,


#include <iostream> using namespace std; int main() { int a = 3; int c[5][5]; for (int x=0;x<5;x++) { for (int y=0;y<5;y++) { c[x][y] = x*y; } } cout << c[a][2]; }

1 Answers  


Categories