Process of hiding internal details of an application from outer world
What is abstraction?
Name of first parameter included in a method definition.
What is self?
Methods that allow a user to modify an object's state.
What are mutators?
Performance categories that qualify an individual as being disabled.
What are activities of daily living?
Text that contains information about what the function does
What is a docstring?
Name two of the four examples of programming abstraction
What are functions, modules, objects, and classes?
This method builds and returns a string representation of an object's state
What is the __str__ method?
An object is a candidate for ________ when creating program can't refer to it
What is extinction?
Name of accessibility guidelines for web content
What is Web Content Accessibility Guidelines or (WCAG)?
The range method takes these three arguments,
What is start, stop, and step?
A blueprint for declaring and creating objects.
What is a class?
Term for programming languages that allow you to define new classes of objects?
What is Object-oriented programming (OOP)?
Term to describe when a class object comes into existence
What is instantiation?
Documents what the software will do and how it is expected to perform
What is the software requirements specification (SRS)?
Names of dictionary items
What is key and value?
A class instance that allows programmers to use variables and methods from inside the class.
What is an object?
Three examples of OOP languages presented in class.
Keywords in object-oriented languages that set the accessibility of classes, methods, and other members
What are Access modifiers (or access specifiers)?
People or groups affected by a software development project.
What is a "stakeholder"?
Common scheme for representing colors noted in the "Simple Graphics" chapter
What is RGB?
Term to describe a variable whose value varies from object to object,
What is an instance variable?
In object oriented terminology, the __init__method is called a . . .
What is a constructor?
Two parts of a header
What is a class name and parent class name?
Three of the seven benefits (discussed in class) of working in a team.
Promotes creativity
Encourages risk-taking
Improves conflict resolution skills
Builds trust
Brings diverse strengths closer
Increases accountability
Character added to avoid one-element tuple
What is a comma?