what is oops
Answers were Sorted based on User's Feedback
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 |
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 |
Answer / thirupathi raju
O:object
O:oriented
P:programing
S:structure
| Is This Answer Correct ? | 0 Yes | 0 No |
Base class has two public data members. How can i derive a new class with one datamember as public and another data member as private?.
why the argument is passed by reference to a copy constructor?example?
Why a "operator=(...)" when there is a copy ctor?
how to write a java program for an output ****0 ***01 **012 *0123 01234
Program to check whether a word starts with a capital letter or not.
What are benefits of oop?
What is the output of the following code: int v() { int m=0; return m++; } int main() { cout<<v(); } 1) 1 2) 0 3) Code cannot compile
what is abstract class ? when is used in real time ? give a exp
why in java first invoke public static void main(String args[]) method????Why not public static void method1(String args[])??
Write a program to sort the number with different sorts in one program ??
what is the difference between javap and jad utility
what is difference between class template and template class?