AP vocabulary

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/27

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 2:02 PM on 8/22/25
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

28 Terms

1
New cards

What is a program?

A set of instructions (program statements) that a computer can follow to perform a specific task.

2
New cards

What is a computer?

A machine that can be programmed to carry out sequences of arithmetic or logical operations automatically that stores and processes data.

3
New cards

What does computing refer to?

The act of performing calculations or using a computer.

4
New cards

What are commands in programming?

Specific instructions given to a computer program to perform an action.

5
New cards

What does the command 'Move();' do?

It moves a robot or character one step forward.

6
New cards

What is the purpose of the putBall(); command?

To place a ball at the current location.

7
New cards

What does takeBall(); command do?

It picks up a ball from the current location.

8
New cards

What action does turnLeft(); command perform?

It rotates 90 degrees to the left.

9
New cards

What is debugging?

The process of finding and fixing errors or bugs in computer hardware or software.

10
New cards

What does programming involve?

The process of writing computer programs or instructions for a computer to follow.

11
New cards

What is KWL?

A learning strategy to organize information before, during, and after a unit of study or reading.

12
New cards

What are functions in programming?

A named block of code that performs a specific task and can be reused.

13
New cards

What does it mean to define a function?

The process of writing the code for a function, including its name, parameters, and instructions.

14
New cards

What does calling a function entail?

Executing a function's code by referencing its name.

15
New cards

What is a function body?

The block of code containing the instructions to be executed when a function is called.

16
New cards

What is the Start Function?

The primary function where program execution begins, often called 'main()' or 'start()'.

17
New cards

What does it mean to read code like a story?

Writing code that is clear, logical, and easy to follow.

18
New cards

What is decomposition in programming?

The process of breaking down a complex problem into smaller, manageable sub-problems.

19
New cards

What is top down design?

An approach where the overall system is defined at a high level and then broken down into smaller components.

20
New cards

What is meant by nested structures?

When one program structure or element is contained within another.

21
New cards

What are pre-conditions?

Conditions that must be true before a specific function or code is executed.

22
New cards

What are post-conditions?

Conditions that are guaranteed to be true after a specific function has successfully executed, assuming pre-conditions were met.

23
New cards

What does API stand for?

Application Programming Interface, a set of defined rules for building and interacting with software applications.

24
New cards

What does speaking to computers involve?

Communicating instructions to a computer through programming languages or input devices.

25
New cards

What is procedure abstraction?

The ability to use methods and programs that we don’t fully understand.

26
New cards

What is a condition in programming?

Code placed inside an if statement to control execution.

27
New cards

What are if statements used for?

To ask a question to the program and execute code only if the answer is true.

28
New cards

What do for loops do?

Allow us to repeat code a fixed number of times.