Returns the 4th element in a list called "items".
What is items[3]?
Finding and fixing errors in a program before they become a real pest.
What is debugging?
Returned by range(3)
What is 0,1,2?
Shows the status of a program and the possibilities for the next step
What is a State Diagram?
len(img[0])
a way to find this in an ndarray image object
What is the length of first row (width of the image)?
In contrast to a waterfall process, this process that provides for frequent testing and a shorter development cycle.
What is Agile?
Consits of class name, attribute names, and method names.
What is a UML Diagram?
A checkpoint in development saved using Git.
What is a commit?
When this is done to a class, an object is created.
What is instantiation?
Either Data or Procedural, it allows us to ignore details in order to reduce complexity.
What is abstraction?