• 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/14

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;

14 Cards in this Set

  • Front
  • Back

True/False


Different developmental activities often take place concurrently

True

The agile development approach where two programmers sit side by side, designing and coding, at a single work station is called ______________

pair programming

True/False


Software requirements describe what a program does but not how it does it

True

The Spiral Life Cycle Model emphasizes ______________

risk management

Objects and represent both

information and behavior

All Java method arguments are passed "by value"

True

True or False


n^3 +4N is O(4N)

False

String is a ______________ type

reference

What notation represent exponential time?

O(2^n)

does:


Circle c1 = new Circle(8);


Circle c2;


c2=c1;



result in garbage being created?

no

Within an object, actions are modeled using _______________

methods

Which kind of variable has a single copy maintained for all objects in a class?

class variables

Which kind of variable holds a value that cannot be changed?

final variable

To access the contents of a package from within a program, you must ____________ the package into your program (answer with a Java reserved word).

inherit