Guide Flashcards

1
Q

What is the difference between structured programming and OOP?

A

Structured programming decomposes the program’s functionality into various procedures (functions),
without much concern about the data each procedure can work with. Functions are free to operate and
modify the (usually global and unprotected) data.
In Object Oriented Programming (OOP), data and associated behavior forms a single unit, which is
referred to as a class.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly