DIFFRENCE BETWEEN STRUCTURED PROGRAMING AND OBJCET ORIENTED
PROGRAMING.
Answer Posted / 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 |
Post New Answer View All Answers
Why is oop useful?
Why is polymorphism needed?
What is super in oop?
What is polymorphism give a real life example?
class CTest { public: void someMethod() { int nCount = 0; cout << "This is some method --> " << nCount; } }; int main() { CTest *pctest; pctest->someMethod(); return 0; } It will executes the someMethod() and displays the value too. how is it possible with our creating memory for the class . i think iam not creating object for the class. Thanks in Advance... Prakash
what is graphics
Please send ford technologies placement paper 2 my mail id
What does enum stand for?
What are the data types in oop?
What is encapsulation and abstraction? How are they implemented in C++?
What is inheritance in simple words?
How can you overcome the diamond problem in inheritance?
Why oops is important?
Why do while loop is used?
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?