A step by step directions on how to complete a task
What is an algorithm
Name 3 examples of a computer (not including laptop or desktop)
Iphone, smartwatch, game console, some VR headsets, tablets
The physical components of a computer
Hardware
Name the steps of the debugging process in order
Describe the problem
Hunt for the bug
Try small changes
Document your findings
What is it called to find and fix errors in a program or code
Debugging
The smallest unit of a digital image that can be displayed and edited on a screen
a pixel
Define what a network is
A group of things that are connected
Getting the best results while doing the least amount of work necessary
Efficiency
What step in the computational thinking process involves taking out key characteristics
Abstraction
A repeat block is an example of what category of coding blocks
Loops
Unique number given to each device that is connected to the internet
What is an IP Address
This special language is used to write code and give computers commands.
What is a programming language
What is a Server?
A computer that provides a service or information to other computers
Explain the purpose of the jump forward block of code while drawing in code.org
It allows you to go forward without drawing a line, pick up the brush and move over, skip a space in the drawing
A system that uses 0 and 1 represent numbers, letters, symbols
Binary Code
Breaking a complex problem down into small manageable tasks is known as what?
Computational Thinking
What is the internet
a network of computers connected globally
A set of rules that determine how data is sent and received over the internet.
Protocol, IP, Internet Protocol
What will happen if a conditional statement's condition is false?
Nothing, the code inside the condition will not run
Explain how an "if statement" works in coding
It checks for a condition and runs based on whether that condition is true
A container that stores a value, which can change while the program runs.
What is a Variable
Thoroughly explain how the internet works to transfer information
large info gets broken down, packets sent to receiver, router is used to detect the correct ip address
What is a bug
problem, error, mistake in your code
How do you draw a triangle using the "repeat" block in code.org?
Use the "repeat 3 times" block with "move forward by" and "turn left by 120 degrees" inside
A group of code that runs together for one output and can be reused over and over
A Function