A software development team must choose a type of programming design that will provide them with the ability to make changes to the code at any time during the development cycle. Also, the design must enable the developers to easily reuse code in other programs. What programming design should the team choose?
A.structural
B.object-oriented
C.objective
D.top-down

Respuesta :

B. object-oriented would be the answer. Hope this helps! #Brainliest

Answer:

B.object-oriented

Explanation:

Object oriented programming deals with modelling a real object in a programming structures. This object has properties like attributes and behavior. This objects can then be manipulated by a class, the other properties like behavior and attributes can then be related to the object.

Object oriented programming is usually encourage because of the re-usability characteristics.

In python an object is represented within a class structure. For example

class animal():

   def __init__(self, name, sound)

         self.name = name

         self.sound = sound

   x = animal("lion", " roar")

print(x.name)

print(x.sound)

The animal is an object and the name is an attribute of the animal while the roaring is one behavior the animal exhibit. All this characteristics are manipulated in the class structure.