Manipulation
Software Design
100

Returns the 4th element in a list called "items".

What is items[3]?

100

Finding and fixing errors in a program before they become a real pest.

What is debugging?

200

Returned by range(3)

What is 0,1,2?

200

Shows the status of a program and the possibilities for the next step

What is a State Diagram?

300

len(img[0]) 

a way to find this in an ndarray image object

What is the length of first row (width of the image)?

300

In contrast to a waterfall process, this process that provides for frequent testing and a shorter development cycle.

What is Agile?

400

Consits of class name, attribute names, and method names.

What is a UML Diagram?

400

A checkpoint in development saved using Git.

What is a commit?

500

When this is done to a class, an object is created.

What is instantiation?

500

Either Data or Procedural, it allows us to ignore details in order to reduce complexity.

What is abstraction?