Activity 1 definitions Flashcards

to increase comprehension of computer science vocabulary to increase student achievement and success

You may prefer our related Brainscape-certified flashcards:
1
Q

a control block that looks for inputs or events to know when to perform a specific action

A

event handler

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

sequence of actions to solve a problem; group of statements that may be used at one or more points in a computer program

A

procedure

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

identify errors or bugs in computer hardware or programs and fix them

A

debugging

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

hides details allowing programmer to focus on high-level functions rather than rules of programming language

A

abstraction

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

set of steps to accomplish a task

A

algorithm

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

symbol in code tells computer to perform a specific math operation (+,-,*,/)

A

arithmetic operator

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

sequential and prioritized list of what needs to be done to create the app the user wants

A

backlog

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

one of two values, such as true or false; allows computer to know what step in the conditional statement process to execute next

A

boolean value

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

style of writing file names that avoids spaces and other characters and differentiates word based on capitalization

A

camelCase

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

joining together of separate items

A

concatenation

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

repetition of a process or newer version of development

A

iteration

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

sequence of instructions that continually repeat until a condition is met

A

loop

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

reduced in number by one

A

decrement

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

stored data that may be used by any part of program

A

global variable

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

stored data that may only be used in one part of program

A

local variable

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

language people use in daily conversations with each other

A

natural language

17
Q

way to work out the logic without worrying about specifics of programming language

A

pseudocode

18
Q

loop that changes the value of a count by a certain amount every time an event occurs

A

incremental counter

19
Q

series of conditionals that a program moves through until it finds the one that is true

A

chained conditional statement

20
Q

values a program provides to a function; a parameter

A

argument

21
Q

smallest unit of data storage that a program can use

A

variable

22
Q

whole number that does not have a decimal or any digits after the decimal

A

integer

23
Q

type of number that provides precise information by including all the numbers after the decimal

A

float

24
Q

text or characters displayed by a program

A

strings

25
Q

direct a program to execute or reference a certain procedure

A

calling a procedure