Unit 1
Unit 2
Unit 3
Vocab
Misc.
100

the language that computers use to communicate; it is how they send, receive and store information

binary code

100

a one-word instruction that has been assigned meaning

command

100

a procedure that is used to deal with events

event handler

100

a set of instructions given to a computer

program code

100

writing the program in a specific language

coding

200

Breaks into companies’ systems legally and ethically to find any vulnerabilities and weaknesses.

Ethical Hacker

200

What happens during the define step of the programming process?

determine the problem

200

used to store information that will be referenced and manipulated in a computer program

variable

200

a set of steps that follow one another in order

sequence

200

Takes the entire program and converts it into binary code

Compiling

300

a list of steps to complete a task

Algorithm

300

performs a specific task when called

function

300

What symbol is used when assigning a value to a variable?

=

300

repeats a sequence of commands

loop

300

_____________ control structure is used to reduce the number of lines of code for an action that will need to be repeated many times

repetition

400

When code is __________, it is read directly from the program

interpreted

400

What is a statement that allows the computer to choose between different paths in a program?

conditional statement

400

a symbol that tells the computer what task to perform

operator

400

an action that occurs as a result of a user's action or another source

event

400

A = 300, B= 179. Which statement is TRUE?

A.) A <= B

B.) A >= B

C.) A <B

D.) A == B

B

500

What is ONE of the top FIVE skills to be successful in coding?

problem solving

sharp memory

efficiency

self-motivation & independence

Perseverance 

500

What are the three types of basic control structures?

sequential

selection

repetition

500

Boolean value are _____ or ______

true or false

500

What job does a back-end developer perform?

Handles what happens behind the scenes on websites

500

If A = 7 and B=3, what is A*B?

21