DIFFRENCE BETWEEN STRUCTURED PROGRAMING AND OBJCET ORIENTED
PROGRAMING.

Answers were Sorted based on User's Feedback



DIFFRENCE BETWEEN STRUCTURED PROGRAMING AND OBJCET ORIENTED PROGRAMING...

Answer / aks

Structured Programming : Revolves around Creating
Programming Constructs. One writes the programs and
modifies the data structures with the focus on Algorithms
and Programming Routines. C/Pascal/BASIC are examples of
structured Programming.

OOP: is focussed on creating data structures and writing
Methods to modify them. The focus is on Creation of Data
Structures and providing Methods to modify these values.
eg. C++/Java/

Is This Answer Correct ?    17 Yes 3 No

DIFFRENCE BETWEEN STRUCTURED PROGRAMING AND OBJCET ORIENTED PROGRAMING...

Answer / rajeshwar raja

Structure Programming : Approaches the problem in "TOP-DOWN"
fashion.

Object Oriented Programming : Approaches the problem in
"BOTTOM-UP" fashion.

Is This Answer Correct ?    9 Yes 3 No

DIFFRENCE BETWEEN STRUCTURED PROGRAMING AND OBJCET ORIENTED PROGRAMING...

Answer / renjith m

Structured programming consists of breaking big problems
into smaller problems, then further breaking those into
still smaller problems, and so on, until a level of such
simplicity is reached that the implementation is obvious to
the programmer expected to do the coding. Object-oriented
programming consists of grouping code with the data on
which it operates so that this "object" can function
independently of the rest of the software system.
Structured programming and object-oriented programming are
not mutually exclusive. You can structure the code in an
object, and you can use objects to implement the modules of
code in a structured program.

Is This Answer Correct ?    6 Yes 4 No

DIFFRENCE BETWEEN STRUCTURED PROGRAMING AND OBJCET ORIENTED PROGRAMING...

Answer / murali

structured programing is once we write the program it's
modification is diffcult beacause so many lines of code
inside the pg we must check every line of code and
modification done accourdingly
oop is very easy to modify any code beacause it consist
classes then easily can modify

Is This Answer Correct ?    3 Yes 3 No

DIFFRENCE BETWEEN STRUCTURED PROGRAMING AND OBJCET ORIENTED PROGRAMING...

Answer / abhi

Procedure Oriented Programming
 Importance is given to the sequence of things to be
done i.e. algorithms
 larger programs are divided into functions
 most functions share global data i.e data move
freely around the system from function to function.
 there is no access specifier

 operator cannot be overloaded

 follows top to bottom approach

 Inheritence is not supported
Object Oriented Programming
 Importance is given to the data.

 larger programs are divided into objects
 mostly the data is private and only functions
inside the object can access the data.

 there are public, private and protected specifier.

 operator can be overloaded


 follows bottom to top approach


 Inheritence is supported

Is This Answer Correct ?    1 Yes 2 No

Post New Answer

More OOPS Interview Questions

What is object and class in oops?

0 Answers  


What is encapsulation process?

0 Answers  


What are objects in oop?

0 Answers  


What is the difference between abstraction and polymorphism?

0 Answers  


in the following, A D B G E C F Each of the seven digits from 0,1,2,3,4,5,6,7,8,9 is: a)Represented by a different letter in abov fig: b)Positioned in the fig abov so tht A*B*C,B*G*E,D*E*F are equal. wch does g represents? C

1 Answers   IonIdea,






Is following functions are said to be overloaded? int add(int a,int b) char *add(int a,int b)

4 Answers  


Why is object oriented programming so hard?

0 Answers  


what is cast operator?

2 Answers   Microsoft,


How to reverse a sentence in c program ex: ram is a good boy answer: boy good a is ram

0 Answers   IBM,


What is balance factor?

0 Answers  


What is the real time example of encapsulation?

0 Answers  


What do you mean by inline function?

6 Answers  


Categories