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

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;

8 Cards in this Set

  • Front
  • Back

1.7: Concept: Procedural programming and _________-___________ ______________ are two ways of thinking about software development and program design.

Object-Oriented Programming

C++ is a language that can be used for two methods of writing computer programs: procedural programming and object-oriented programming. true or false?

True

What happens in procedural programming?

the programmer constructs procedures (or functions, as they are called in C++). The procedures are collections of programming statements that perform a specific task.

What is the difference between procedural programming and object-oriented programming?

PP is centered on the procedure, or function.


OOP is centered on the object.

In Object-Oriented Programming, what is an object?

a programming element that contains data and the procedures that operate on the data.

Is an object a self-contained unit?

Yes.

1.25: What four items should you identify when defining what a program is to do?

Purpose


Input


Process


Output

1.26: What does it mean to "visualize a program running"? What is the value of such an activity?

I means to put yourself in the user's shoes, answer the questions: "what message should the program display?" and "What questions should it ask?"


By addressing these concerns, you will have determined most of the program's output.