comp sci final code hs terms

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

1/24

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 3:15 AM on 6/13/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

25 Terms

1
New cards

An abstraction is:

Way to manage complexity, hide details or remove duplication

2
New cards

An algorithm is:

A set of steps to accomplish a task

3
New cards

An argument is:

Values that a program provides to a function or subroutine

4
New cards

An arithmetic operator is:

Type of code to perform a math operation, such as +-*/

5
New cards

A(n) Boolean expression is:

An expression that can be evaluted as TRUE or FALSE. Often used in CONDITIONAL STATEMENTS, such as IF (condition) THEN (action1) ELSE (action2)

6
New cards

A(n) relational operator is:

A symbol that represents a compare action for a computer to take. Examples are: ">" (greater than), "<" (less than) and "=" (equal)

7
New cards

A(n) event handler is:

Control block that looks for events to then perform action

8
New cards

A(n) logical operator is:

Operators that are used to combine or change Boolean Expressions. The 3 standard operators are AND, OR, and NOT.

9
New cards

A(n) float is:

A precise number by including values after the decimal place

10
New cards

A(n) integer is:

A whole number, it does not have any digits after a decimal.

11
New cards

A(n) boolean is:

A data type that can have only 2 values - TRUE or FALSE

12
New cards

A(n) conditional statement is:

A programming statement that directs control flow - it uses BOOLEAN expressions to make a choice between different paths (IF (condition) THEN (path1) ELSE (path2)

13
New cards

A(n) event is:

An action (such as clicking a button) or occurrence (receiving a text message) that happens during runtime that will trigger a response or behavior by the software.

14
New cards

A(n) string is:

A type of variable that holds text (characters, numbers, punctuation or math symbols). Uses quotes to tell the computer to not treat what is inside the string (inside the quotes) as code

15
New cards

A(n) value is:

An object such as a number or word. A _____ is an expression that cannot be evaluated any further. Variables are evaluated to a final ____ before operators (arithmetic, relational, or logical) are then used on them.

16
New cards

A(n) variable is:

The smallest unit of data storage that a program can use.

17
New cards
<p><strong>Which Event Handler will update the Screen to show the picture taken on the Canvas?</strong></p>

Which Event Handler will update the Screen to show the picture taken on the Canvas?

Camera 2

18
New cards
<p><br><span>If "AngryBird.X &gt; HappyPig.X" is TRUE and "AngryBird.Y &gt; HappyPig.Y" is FALSE, what color will be chosen?</span></p>


If "AngryBird.X > HappyPig.X" is TRUE and "AngryBird.Y > HappyPig.Y" is FALSE, what color will be chosen?

Green

19
New cards
<p><span>If AngryBird.X = 10, AngryBird.Y = 10 and HappyPig.X = 30, HappyPig.Y = 30, what color will be chosen?</span></p>

If AngryBird.X = 10, AngryBird.Y = 10 and HappyPig.X = 30, HappyPig.Y = 30, what color will be chosen?

Yellow

20
New cards
<p><br><span>If AngryBird.X = 50, AngryBird.Y = 50 and HappyPig.X = 30, HappyPig.Y = 30, what color will be chosen?</span></p>


If AngryBird.X = 50, AngryBird.Y = 50 and HappyPig.X = 30, HappyPig.Y = 30, what color will be chosen?

Purple

21
New cards
<p><span>"when slider1.position changed" is an example of:</span></p>

"when slider1.position changed" is an example of:

an event handler

22
New cards


"message", "title", "button1Text" are all examples of:

arguments

23
New cards
<p><br><span>In the picture, "HappyImage.Y &lt; Canvas1.Height * 0.1" is an example of:</span></p>


In the picture, "HappyImage.Y < Canvas1.Height * 0.1" is an example of:

a boolean expression

24
New cards
<p><br><span>In the picture, OR is an example of:</span></p>


In the picture, OR is an example of:

a logical operator

25
New cards
<p><span>In the picture, the x in "Canvas1.Height x 0.1" is:</span></p>

In the picture, the x in "Canvas1.Height x 0.1" is:

an arithmetic operator