AP CompSci Principles (Unit 3)

0.0(0)
studied byStudied by 0 people
0.0(0)
full-widthCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/6

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

7 Terms

1
New cards

User Interface

the inputs and outputs that allow a user to interact with a piece of software. User interfaces can include a variety of forms such as buttons, menus, images, text, and graphics

2
New cards

Input

data that is sent to a computer for processing by a program. Can come in a variety of forms, such as tactile interaction, audio, visuals, or text

3
New cards

Output

any data that is sent from a program to a device. Can come in a variety of forms, such as tactile interaction, audio, visuals, or text

4
New cards

Program Statement

a command or instruction

sometimes also referred to as a code statement

<p>a command or instruction</p><p>sometimes also referred to as a code statement</p>
5
New cards

Program

a collection of program statements

programs run (or “execute”) one command at a time

<p>a collection of program statements</p><p>programs run (or “execute”) one command at a time</p>
6
New cards

Sequential Programming

program statements run in order

from top to bottom

  • no user interaction

  • code runs the same way every time

7
New cards

Event Driven Programming

some program statements run when triggered by an event, like a mouse click or a key press

  • programs run differently each time depending on user interactions