Definition of Object Oriented Programming in single line?
Answers were Sorted based on User's Feedback
Answer / sidhi.r
Object oriented programming is a programming paradigm which
uses objects and its interactions to design applications
and computer programs.
Is This Answer Correct ? | 163 Yes | 26 No |
Answer / sureshk_ap
OOP is a programming technique in which focuses on objects
to get the real world applications.
Is This Answer Correct ? | 49 Yes | 18 No |
Answer / a srinivas rao
An Obiect Oriented Programming is a programming which
consist's mainly of object's(because objects are real world
entities any thing in the world can be shown in the form of
an object)
Is This Answer Correct ? | 39 Yes | 23 No |
Answer / sheetal
OOP is a programming technique for developing software
solutions wherein real world is represented in terms of
objects.
Is This Answer Correct ? | 29 Yes | 16 No |
oops is real world entity,in which data and function are
hidden from outside the world only object of the class can
access the dat and function of class
Is This Answer Correct ? | 27 Yes | 14 No |
Answer / sekar
Object-oriented programming as an approach that provides a
way of modularizing programs by creating partitioned memory
area for both data and functions that can be used as
templates for creating copies of such modules on demand.
Is This Answer Correct ? | 24 Yes | 12 No |
Answer / sreevals
An Object-Oriented Program consists of a group of
cooperating objects, exchanging messages, for the purpose
of achieving a common objective
Is This Answer Correct ? | 39 Yes | 29 No |
Answer / suresh palkar
It is an approach that provide a way of modularizing
programs by creating partitioned memory area for both data
and function that can be used as templates for creating
copies of such modules on demand
Is This Answer Correct ? | 13 Yes | 5 No |
Answer / chitra
oop is the feature that allows a mode of modularizing
programs by forming separate memory area for data as well
as functions that is used as object for making copies of
modules as per requirement.
Is This Answer Correct ? | 20 Yes | 13 No |
Answer / brijesh
OOPs is the Programming language in which we intrect with
the object world.And we define our logic inside a class and
take it by object.
Is This Answer Correct ? | 13 Yes | 6 No |
what is Class in oops with example?
Differences between inline functions and non-inline functions?
what is the abstract class,interface ,its difference with a programatic eg.? hi,recently i went for an interview they ask me what is abstract class ,interface and its difference I said abstract class contain abstact method ,abstract method is a method with no body.Abstract class cannot be instantiated.Abstract class is a base class it required derived class for the implementation of method. Interface is a syntactical contract that all derived class should follow it define properties ,method,events which are known as member of interface. Then They asked me what is the difference between them. I said abstract class interface 1.abstact class can implement method 1.interface cant 2.abstact class can contain constructor, 2.interface cant destructor 3.abstract class cannot support multiple 3.interface support inheritance etc Then they said some different answer I said dont no. Then they ask me when i should make abstract class for an project and when i should make interface. I said if suppose there is two class which must be having method with different logic then we sholud make abstract class. and if suppose we have two class having method .with different logic then we can make interface . Am i correct with my explaination.if not correct me .please provide me that when should we create abstract class and interface and what is difference .please help me
Explain polymorphism? What r the types of polymorphism? pls give examples?
Which is the parameter that is added to every non-static member function when it is called?
Do you know about multiple inheritance?
What is the difference between a constructor and a destructor?
how much classes are used in c++
c++ provides classes...and classes do what we want but why then strcut are used...if we say data hiding... it is also provided by c++ in structs then why to prefer clasess
write a c++ program to find maximum of two numbers using inline functions.
explain the concepts of oops?
Why is polymorphism important in oop?