• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/21

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

21 Cards in this Set

  • Front
  • Back

object

one tangible example of a class; an instance of a class

object code

code that has been trnaslated to machine language

object diagrams

UML diagrams that are similar to class diagrams, but that model specific instances of classes

object dictionary

a list of the objects used in a program, including which screens they are used on and whether any code, or script, is associated with them.

object-oriented programming

a programming model that focuses on components and data items (objects) and describes their attributes and behaviors.

OOP

a programming model that focuses on components and data items (objects) and describes their attributes and behaviors.

one-dimensional array

a list accessed using a single subscript

one-to-many relationships

the relationship in which one row in a table can be related to many rows in another table. it is the most common type of relationship among tables

one-to-one relationship

the relationship in which a row in one table corresponds to exactly one row in another table.

opening a file

the process of locating a file on a storage device, physically preparing it for reading, and associating it with and identifier inside a program.

operating system

the software that runs a computer and manages its resources

OR decision

a devision that contains two or more conditions; if at least one condition is met, the resulting action takes place

order of operations

describes the rules of precedence

out of bounds

describes an array subscript that is not within the range of acceptable subscripts

outer loop

the loop that contains a nested loop

output

describes the operation of retrieving information from memory and sending it to a device, such as a monitor or printer, so people can view, interpret, and work with the results.

output symbol

a symbol that indicates an output operation and is represented as a parallelogram in flowcharts.

overhead

all the resources and time required by an operation

overload a method

to create multiple methods with the same name but different parameter lists.

overloading

supplying diverse meanings for a single identifier

overriding

the mechanism by which a child class method is used by default when a parent contains a method with the same signature.