Definition of Object Oriented Programming in single line?

Answers were Sorted based on User's Feedback



Definition of Object Oriented Programming in single line?..

Answer / nikhil surathkal

Object Oriented Programming is a method of programming
based on hierarchie of classes and well defined and
cooperating objects.

Is This Answer Correct ?    6 Yes 1 No

Definition of Object Oriented Programming in single line?..

Answer / ajay

Object oriented programming is way to design real world
application with the help of objects.

Is This Answer Correct ?    9 Yes 5 No

Definition of Object Oriented Programming in single line?..

Answer / veera brahmam m

An Object-oriented programming (OOP) is a programming
language model organized around "objects" rather
than "actions" and data rather than logic. Historically, a
program has been viewed as a logical procedure that takes
input data, processes it, and produces output data.

Is This Answer Correct ?    4 Yes 1 No

Definition of Object Oriented Programming in single line?..

Answer / nirmala

it is a programming paradiam which is used a object

Is This Answer Correct ?    19 Yes 17 No

Definition of Object Oriented Programming in single line?..

Answer / bhawani shankar tripathi

Object oriented progranning is a type of methodology used
for building software applications,it consist of
classes,object,and methods.

Is This Answer Correct ?    7 Yes 5 No

Definition of Object Oriented Programming in single line?..

Answer / rampal singh

object-oriented progrmming is an approch that provide a way
of modularizing program by creating partitioned memory area
for both data and function that can be used as templete for
creating copies of such moduals on demand

Is This Answer Correct ?    2 Yes 0 No

Definition of Object Oriented Programming in single line?..

Answer / santosh

OOPS is the language use to write a real world software
which binds the data and associated funtions together.

Is This Answer Correct ?    9 Yes 8 No

Definition of Object Oriented Programming in single line?..

Answer / manoj

OOPs is a Programming Model in which everything in real
world is consider as Objects

Is This Answer Correct ?    5 Yes 4 No

Definition of Object Oriented Programming in single line?..

Answer / rampal singh

In Object Oriented Programming, a class defines a type of
variable.

An object doesn't exist until an instance of the class has
been created; the class is just a definition. When the
object is physically created, space for that object is
allocated in RAM. It is possible to have multiple objects
created from one class.

Is This Answer Correct ?    2 Yes 1 No

Definition of Object Oriented Programming in single line?..

Answer / shailesh shrivastava

OOPS is a collection of concepts or a technique that helps
to develop well define application .

Is This Answer Correct ?    2 Yes 1 No

Post New Answer

More OOPS Interview Questions

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

4 Answers   Bally Technologies, IBM, SoftSol,


String = "C++ is an object oriented programming language.An imp feature of oops is classes and objects".Write a pgm to count the repeated words from this scenario?

0 Answers   HCL,


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

0 Answers  


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

7 Answers  


#include <stdio.h> #include <alloc.h> #include <stdlib.h> #include <conio.h> void insert(struct btreenode **, int); void inorder(struct btreenode *); struct btreenode { struct btreenode *leftchild; struct btreenode *rightchild; int data; }; main() { struct btreenode *bt; bt=(struct btreenode *)NULL; int req,i=1,num; clrscr(); printf("Enter number of nodes"); scanf("%d",&req); while(i<=req) { printf("Enter element"); scanf("%d",&num); insert(&bt,num); i++; } inorder(bt); } void insert(struct btreenode **sr, int num) { if(*sr==NULL) { *sr=(struct btreenode *)malloc (sizeof(struct btreenode)); (*sr)->leftchild=(struct btreenode *)NULL; (*sr)->rightchild=(struct btreenode *)NULL; (*sr)->data=num; return; } else { if(num < (*sr)->data) insert(&(*sr)->leftchild,num); else insert(&(*sr)->rightchild,num); } return; } void inorder(struct btreenode *sr) { if(sr!=(struct btreenode *)NULL) { inorder(sr->leftchild); printf("\n %d",sr->data); inorder(sr->rightchild); } else return; } please Modify the given program and add two methods for post order and pre order traversals.

0 Answers  






What is multilevel inheritance?

0 Answers  


What is the difference between procedural programming and oops?

0 Answers  


What are the 4 pillars of oop?

0 Answers  


What is polymorphism explain?

0 Answers  


1.explicit call for destructor 2.calling function inside a constructor. 3.base *b-new derived delete b; 4.delete p what it will delete. 5.size of base class and derived class int i,in base class and int j in derived. 6.int i-20 int main() { int i =5; printf("%d".::i); { int i =10; printf("%d".::i); } } 7.object slicing 8.new 9.function overloading(return type). 10.class base() { virtuval fun() { ----- } } class derivied:public base() { fun() { ----- } } int main() { derived d; } 11.how static function will call in C++? 12.default structures are in C++? 13.constructors should be in public . 14.virtuval constructor not exist. 15.multilevel inhritence. destructor order.

1 Answers   Tech Mahindra,


Can you inherit a private class?

0 Answers  


officer say me - i am offered to a smoking , then what can you say

0 Answers  


Categories