AP CSA exam full vocab review Flashcards
(36 cards)
softwhere fevelopement
writing a program
object oriented programming (oop)
uses interacting objects
program specification
description of a task
program design
a written plan, an overview of the solution
program implementation
the code
test data
input to test the programb
program maintenance
keeping the program working and up to date
top-down development
implement main classes first. sub classes later
independent class
doesn’t use other classes of the program in its code
bottom up development
implements lowest level, independent classes first
driver class
used to test other classes; contains main method
inheritance relationship
is-a relationship between classes
composition relationship
has-a relationship between classes
inheritance hierarchy
inheritance relationship shown in tree-like diagram
UML diagram
tree-like representation of relationship between classes
data structure
java construct for storing a data field (eg array)
dara encapsulation
hiding data fields and methods in a class
stepwise refinement
breaking methods into smaller methods
procedural abstraction
using separate methods to encapsulate each task
algorithm
step-by-step process that solves a problem
stub method
dummy method called by another method being tested
debugging
fixing errors
robust program
screens out bad input
compile-time error
usually a syntax error; prevents program from compiling